ProductionCSIDSuccessData.fromJson constructor

ProductionCSIDSuccessData.fromJson(
  1. Map<String, dynamic> json
)

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'],
  );
}