DescribeOrganizationConfigurationResponse.fromJson constructor

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

Implementation

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