ProductionCSIDRenewalSuccessData.fromJson constructor

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

Constructs the model from a JSON map.

Implementation

factory ProductionCSIDRenewalSuccessData.fromJson(Map<String, dynamic> json) {
  return ProductionCSIDRenewalSuccessData(
    requestID: json['requestID'],
    dispositionMessage: json['dispositionMessage'],
    binarySecurityToken: json['binarySecurityToken'],
    secret: json['secret'],
    tokenType: json['tokenType'],
  );
}