GoogleCloudIntegrationsV1alphaTaskExecutionDetails.fromJson constructor

GoogleCloudIntegrationsV1alphaTaskExecutionDetails.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaTaskExecutionDetails.fromJson(core.Map json_)
  : this(
      taskAttemptStats:
          (json_['taskAttemptStats'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudIntegrationsV1alphaAttemptStats.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
      taskExecutionState: json_['taskExecutionState'] as core.String?,
      taskNumber: json_['taskNumber'] as core.String?,
    );