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