BGP Peer Group ASN details.
| Name | Type | Description | Notes |
|---|---|---|---|
| asn | int | The BGP Peer Group ASN. | |
| is_bring_your_own | bool | True if the BGP Peer Group ASN is a `bring your own` ASN. | |
| verification_status | str | The BGP Peer Group ASN verification status. Can have one of the following values: `PENDING_VERIFICATION`, `FAILED_VERIFICATION` and `VERIFIED`. | |
| verification_reason | str | The BGP Peer Group ASN verification reason for the respective status. | [optional] |
from pnap_network_api.models.asn_details import AsnDetails
# TODO update the JSON string below
json = "{}"
# create an instance of AsnDetails from a JSON string
asn_details_instance = AsnDetails.from_json(json)
# print the JSON string representation of the object
print(AsnDetails.to_json())
# convert the object into a dict
asn_details_dict = asn_details_instance.to_dict()
# create an instance of AsnDetails from a dict
asn_details_from_dict = AsnDetails.from_dict(asn_details_dict)