GetAssociationForServiceQuotaTemplateResponse.fromJson constructor

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

Implementation

factory GetAssociationForServiceQuotaTemplateResponse.fromJson(
    Map<String, dynamic> json) {
  return GetAssociationForServiceQuotaTemplateResponse(
    serviceQuotaTemplateAssociationStatus:
        (json['ServiceQuotaTemplateAssociationStatus'] as String?)
            ?.toServiceQuotaTemplateAssociationStatus(),
  );
}