PutOrganizationConformancePackResponse.fromJson constructor

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

Implementation

factory PutOrganizationConformancePackResponse.fromJson(
    Map<String, dynamic> json) {
  return PutOrganizationConformancePackResponse(
    organizationConformancePackArn:
        json['OrganizationConformancePackArn'] as String?,
  );
}