DescribeIdentityProviderConfigurationResponse.fromJson constructor

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

Implementation

factory DescribeIdentityProviderConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeIdentityProviderConfigurationResponse(
    identityProviderSamlMetadata:
        json['IdentityProviderSamlMetadata'] as String?,
    identityProviderType:
        (json['IdentityProviderType'] as String?)?.toIdentityProviderType(),
    serviceProviderSamlMetadata:
        json['ServiceProviderSamlMetadata'] as String?,
  );
}