Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 908 Bytes

AddressObject.md

File metadata and controls

21 lines (16 loc) · 908 Bytes

# AddressObject

An object representing an address with various properties.

use Xendit\Invoice\AddressObject;

Properties

Name Type Required Description Examples
country string The country where the address is located. null
street_line1 string The first line of the street address. null
street_line2 string The second line of the street address. null
city string The city or locality within the address. null
province string The province or region within the country. null
state string The state or administrative division within the country. null
postal_code string The postal code or ZIP code for the address. null

[Back to README]