Invoice_address
$model.description$.
Defined (1)
The class is defined in the following location(s).
- /lib/taxamo/Taxamo/models/invoice_address.php
- class Invoice_address {
- static $swaggerTypes = array(
- 'freeform_address' => 'string',
- 'building_number' => 'string',
- 'street_name' => 'string',
- 'address_detail' => 'string',
- 'city' => 'string',
- 'postal_code' => 'string',
- 'region' => 'string',
- 'country' => 'string'
- );
- /**
- * Freeform address. Use when structured data is not available. Will be used in SAF-MOSS file if other fields are not provided.
- */
- public $freeform_address; // string
- /**
- * Building number.
- */
- public $building_number; // string
- /**
- * Street name.
- */
- public $street_name; // string
- /**
- * Address details - for example apartament number.
- */
- public $address_detail; // string
- /**
- * City name.
- */
- public $city; // string
- /**
- * Postal code.
- */
- public $postal_code; // string
- /**
- * Region.
- */
- public $region; // string
- /**
- * 2-letter ISO country code.
- */
- public $country; // string
- }