WorkforceIdentityBasedOAuth2ClientID.fromJson constructor

WorkforceIdentityBasedOAuth2ClientID.fromJson(
  1. Map json_
)

Implementation

WorkforceIdentityBasedOAuth2ClientID.fromJson(core.Map json_)
    : this(
        firstPartyOauth2ClientId:
            json_.containsKey('firstPartyOauth2ClientId')
                ? json_['firstPartyOauth2ClientId'] as core.String
                : null,
        thirdPartyOauth2ClientId:
            json_.containsKey('thirdPartyOauth2ClientId')
                ? json_['thirdPartyOauth2ClientId'] as core.String
                : null,
      );