GoogleCloudApigeeV1EndpointChainingRule.fromJson constructor
GoogleCloudApigeeV1EndpointChainingRule.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1EndpointChainingRule.fromJson(core.Map json_)
: this(
deploymentGroup: json_.containsKey('deploymentGroup')
? json_['deploymentGroup'] as core.String
: null,
proxyIds: json_.containsKey('proxyIds')
? (json_['proxyIds'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);