EnterpriseCrmEventbusProtoEventExecutionSnapshotEventExecutionSnapshotMetadata.fromJson constructor
EnterpriseCrmEventbusProtoEventExecutionSnapshotEventExecutionSnapshotMetadata.fromJson(
- Map json_
Implementation
EnterpriseCrmEventbusProtoEventExecutionSnapshotEventExecutionSnapshotMetadata.fromJson(
core.Map json_)
: this(
ancestorIterationNumbers:
(json_['ancestorIterationNumbers'] as core.List?)
?.map((value) => value as core.String)
.toList(),
ancestorTaskNumbers: (json_['ancestorTaskNumbers'] as core.List?)
?.map((value) => value as core.String)
.toList(),
eventAttemptNum: json_['eventAttemptNum'] as core.int?,
integrationName: json_['integrationName'] as core.String?,
taskAttemptNum: json_['taskAttemptNum'] as core.int?,
taskLabel: json_['taskLabel'] as core.String?,
taskName: json_['taskName'] as core.String?,
taskNumber: json_['taskNumber'] as core.String?,
);