GoogleCloudIntegrationsV1alphaExecutionReplayInfo.fromJson constructor

GoogleCloudIntegrationsV1alphaExecutionReplayInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaExecutionReplayInfo.fromJson(core.Map json_)
  : this(
      originalExecutionInfoId:
          json_['originalExecutionInfoId'] as core.String?,
      replayMode: json_['replayMode'] as core.String?,
      replayReason: json_['replayReason'] as core.String?,
      replayedExecutionInfoIds:
          (json_['replayedExecutionInfoIds'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );