GoogleCloudApigeeV1CanaryEvaluation.fromJson constructor
GoogleCloudApigeeV1CanaryEvaluation.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1CanaryEvaluation.fromJson(core.Map json_)
: this(
control: json_['control'] as core.String?,
createTime: json_['createTime'] as core.String?,
endTime: json_['endTime'] as core.String?,
metricLabels: json_.containsKey('metricLabels')
? GoogleCloudApigeeV1CanaryEvaluationMetricLabels.fromJson(
json_['metricLabels'] as core.Map<core.String, core.dynamic>,
)
: null,
name: json_['name'] as core.String?,
startTime: json_['startTime'] as core.String?,
state: json_['state'] as core.String?,
treatment: json_['treatment'] as core.String?,
verdict: json_['verdict'] as core.String?,
);