GetIntegrationResponseResponse.fromJson constructor 
    
      
      GetIntegrationResponseResponse.fromJson(
 - Map<String, dynamic> json
) 
    
    
  Implementation
  factory GetIntegrationResponseResponse.fromJson(Map<String, dynamic> json) {
  return GetIntegrationResponseResponse(
    contentHandlingStrategy: (json['contentHandlingStrategy'] as String?)
        ?.toContentHandlingStrategy(),
    integrationResponseId: json['integrationResponseId'] as String?,
    integrationResponseKey: json['integrationResponseKey'] as String?,
    responseParameters: (json['responseParameters'] as Map<String, dynamic>?)
        ?.map((k, e) => MapEntry(k, e as String)),
    responseTemplates: (json['responseTemplates'] as Map<String, dynamic>?)
        ?.map((k, e) => MapEntry(k, e as String)),
    templateSelectionExpression:
        json['templateSelectionExpression'] as String?,
  );
}