toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bgpAlwaysCompareMed = this.bgpAlwaysCompareMed;
final bgpBestPathSelectionMode = this.bgpBestPathSelectionMode;
final bgpInterRegionCost = this.bgpInterRegionCost;
final effectiveBgpAlwaysCompareMed = this.effectiveBgpAlwaysCompareMed;
final effectiveBgpInterRegionCost = this.effectiveBgpInterRegionCost;
final routingMode = this.routingMode;
return {
'bgpAlwaysCompareMed': ?bgpAlwaysCompareMed,
'bgpBestPathSelectionMode': ?bgpBestPathSelectionMode,
'bgpInterRegionCost': ?bgpInterRegionCost,
'effectiveBgpAlwaysCompareMed': ?effectiveBgpAlwaysCompareMed,
'effectiveBgpInterRegionCost': ?effectiveBgpInterRegionCost,
'routingMode': ?routingMode,
};
}