Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.15 KB

BillingAccountAddress.md

File metadata and controls

33 lines (25 loc) · 1.15 KB

BillingAccountAddress

Properties

Name Type Description Notes
line1 str [optional]
line2 str [optional]
city str [optional]
state str [optional]
postal_code str [optional]
country str [optional]

Example

from frontier_api.models.billing_account_address import BillingAccountAddress

# TODO update the JSON string below
json = "{}"
# create an instance of BillingAccountAddress from a JSON string
billing_account_address_instance = BillingAccountAddress.from_json(json)
# print the JSON string representation of the object
print BillingAccountAddress.to_json()

# convert the object into a dict
billing_account_address_dict = billing_account_address_instance.to_dict()
# create an instance of BillingAccountAddress from a dict
billing_account_address_form_dict = billing_account_address.from_dict(billing_account_address_dict)

[Back to Model list] [Back to API list] [Back to README]