GoogleCloudApigeeV1DeploymentChangeReportRoutingChange.fromJson constructor

GoogleCloudApigeeV1DeploymentChangeReportRoutingChange.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1DeploymentChangeReportRoutingChange.fromJson(
  core.Map json_,
) : this(
      description: json_['description'] as core.String?,
      environmentGroup: json_['environmentGroup'] as core.String?,
      fromDeployment:
          json_.containsKey('fromDeployment')
              ? GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.fromJson(
                json_['fromDeployment']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      shouldSequenceRollout: json_['shouldSequenceRollout'] as core.bool?,
      toDeployment:
          json_.containsKey('toDeployment')
              ? GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.fromJson(
                json_['toDeployment'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );