class BgpRouteInfo { string RoutingDomain Specifies the alphanumeric ID of the Routing Domain / Tenant. string Network Specifies ...

class BgpRouteInfo
{
    string       RoutingDomain                 Specifies the alphanumeric ID of the Routing Domain / Tenant.
    string       Network                            Specifies the destination network's IP Address and Mask separated by '/'
    ipaddress NextHop                           Specifies the IP Address of the next hop to which the traffic for the given Network Prefix is to be forwarded
    string       Origin                                Specifies the the origin of the route i.e. whether it is an internally learned route, externally learned route, or of unknown origin (custom route)
    int            ASPath[]                            Specifies the AS-PATH of the Network Prefix
    int            LocalPref                           Specifies the Local Preference value of the given BGP route
    string       Community[]                     Specifies the Community attribute values associated with the prefix
    string       MED                                  Specifies the Multi-Exit-Discriminator metric of the given BGP route
    string       LearnedFromPeer             Specifies the PeerID of the peer from which this prefix was learned
}