InterconnectRemoteLocationConstraints.fromJson constructor
InterconnectRemoteLocationConstraints.fromJson(
- Map json_
Implementation
InterconnectRemoteLocationConstraints.fromJson(core.Map json_)
: this(
portPairRemoteLocation:
json_['portPairRemoteLocation'] as core.String?,
portPairVlan: json_['portPairVlan'] as core.String?,
subnetLengthRange: json_.containsKey('subnetLengthRange')
? InterconnectRemoteLocationConstraintsSubnetLengthRange.fromJson(
json_['subnetLengthRange']
as core.Map<core.String, core.dynamic>)
: null,
);