GoogleCloudIntegrationsV1alphaExecutionDetails.fromJson constructor

GoogleCloudIntegrationsV1alphaExecutionDetails.fromJson(
  1. Map json_
)

Implementation

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