InterconnectAttachmentConfigurationConstraints.fromJson constructor
      
      InterconnectAttachmentConfigurationConstraints.fromJson(
    
    
- Map json_
 
Implementation
InterconnectAttachmentConfigurationConstraints.fromJson(core.Map json_)
    : this(
        bgpMd5: json_['bgpMd5'] as core.String?,
        bgpPeerAsnRanges: (json_['bgpPeerAsnRanges'] as core.List?)
            ?.map((value) =>
                InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange
                    .fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
      );