GoogleCloudConnectorsV1EventingRuntimeDataWebhookData.fromJson constructor

GoogleCloudConnectorsV1EventingRuntimeDataWebhookData.fromJson(
  1. Map json_
)

Implementation

GoogleCloudConnectorsV1EventingRuntimeDataWebhookData.fromJson(core.Map json_)
    : this(
        additionalVariables: json_.containsKey('additionalVariables')
            ? (json_['additionalVariables'] as core.List)
                .map((value) =>
                    GoogleCloudConnectorsV1ConfigVariable.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        nextRefreshTime: json_.containsKey('nextRefreshTime')
            ? json_['nextRefreshTime'] as core.String
            : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );