ProductionCSIDSuccessData.fromJson constructor
Constructs the model from a JSON map.
Implementation
factory ProductionCSIDSuccessData.fromJson(Map<String, dynamic> json) {
return ProductionCSIDSuccessData(
requestID: json['requestID'],
dispositionMessage: json['dispositionMessage'],
binarySecurityToken: json['binarySecurityToken'],
secret: json['secret'],
);
}