GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.fromJson constructor

GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.fromJson(
    core.Map json_)
    : this(
        conflictingDeployment: json_.containsKey('conflictingDeployment')
            ? GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
                .fromJson(json_['conflictingDeployment']
                    as core.Map<core.String, core.dynamic>)
            : null,
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        environmentGroup: json_.containsKey('environmentGroup')
            ? json_['environmentGroup'] as core.String
            : null,
      );