GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client.fromJson constructor

GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client.fromJson(
  1. Map json_
)

Implementation

GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client.fromJson(
    core.Map json_)
    : this(
        attributesType: json_.containsKey('attributesType')
            ? json_['attributesType'] as core.String
            : null,
        clientId: json_.containsKey('clientId')
            ? json_['clientId'] as core.String
            : null,
        clientSecret: json_.containsKey('clientSecret')
            ? GoogleIamAdminV1WorkforcePoolProviderOidcClientSecret.fromJson(
                json_['clientSecret'] as core.Map<core.String, core.dynamic>)
            : null,
        issuerUri: json_.containsKey('issuerUri')
            ? json_['issuerUri'] as core.String
            : null,
        queryParameters: json_.containsKey('queryParameters')
            ? GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2ClientQueryParameters
                .fromJson(json_['queryParameters']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );