GoogleCloudIntegrationsV1alphaAuthConfig.fromJson constructor

GoogleCloudIntegrationsV1alphaAuthConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaAuthConfig.fromJson(core.Map json_)
  : this(
      certificateId: json_['certificateId'] as core.String?,
      createTime: json_['createTime'] as core.String?,
      creatorEmail: json_['creatorEmail'] as core.String?,
      credentialType: json_['credentialType'] as core.String?,
      decryptedCredential:
          json_.containsKey('decryptedCredential')
              ? GoogleCloudIntegrationsV1alphaCredential.fromJson(
                json_['decryptedCredential']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      description: json_['description'] as core.String?,
      displayName: json_['displayName'] as core.String?,
      encryptedCredential: json_['encryptedCredential'] as core.String?,
      expiryNotificationDuration:
          (json_['expiryNotificationDuration'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      lastModifierEmail: json_['lastModifierEmail'] as core.String?,
      name: json_['name'] as core.String?,
      overrideValidTime: json_['overrideValidTime'] as core.String?,
      reason: json_['reason'] as core.String?,
      state: json_['state'] as core.String?,
      updateTime: json_['updateTime'] as core.String?,
      validTime: json_['validTime'] as core.String?,
      visibility: json_['visibility'] as core.String?,
    );