CreateBGPPeerResponse.fromJson constructor
Implementation
factory CreateBGPPeerResponse.fromJson(Map<String, dynamic> json) {
return CreateBGPPeerResponse(
virtualInterface: json['virtualInterface'] != null
? VirtualInterface.fromJson(
json['virtualInterface'] as Map<String, dynamic>)
: null,
);
}