GoogleCloudIntegrationsV1alphaExecutionDetails.fromJson constructor
GoogleCloudIntegrationsV1alphaExecutionDetails.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaExecutionDetails.fromJson(core.Map json_)
: this(
attemptStats: json_.containsKey('attemptStats')
? (json_['attemptStats'] as core.List)
.map((value) =>
GoogleCloudIntegrationsV1alphaAttemptStats.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
eventExecutionSnapshotsSize:
json_.containsKey('eventExecutionSnapshotsSize')
? json_['eventExecutionSnapshotsSize'] as core.String
: null,
executionSnapshots: json_.containsKey('executionSnapshots')
? (json_['executionSnapshots'] as core.List)
.map((value) =>
GoogleCloudIntegrationsV1alphaExecutionSnapshot.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
state:
json_.containsKey('state') ? json_['state'] as core.String : null,
);