GoogleCloudIntegrationsV1alphaListExecutionsResponse.fromJson constructor
GoogleCloudIntegrationsV1alphaListExecutionsResponse.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaListExecutionsResponse.fromJson(core.Map json_)
: this(
executionInfos: (json_['executionInfos'] as core.List?)
?.map((value) =>
EnterpriseCrmFrontendsEventbusProtoEventExecutionInfo
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
executions: (json_['executions'] as core.List?)
?.map((value) => GoogleCloudIntegrationsV1alphaExecution.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);