DescribeOrganizationConfigurationResponse.fromJson constructor
Implementation
factory DescribeOrganizationConfigurationResponse.fromJson(
Map<String, dynamic> json) {
return DescribeOrganizationConfigurationResponse(
autoEnable: json['AutoEnable'] as bool?,
memberAccountLimitReached: json['MemberAccountLimitReached'] as bool?,
);
}