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