InterconnectRemoteLocationConstraints.fromJson constructor

InterconnectRemoteLocationConstraints.fromJson(
  1. Map json_
)

Implementation

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