katana_public_api_client.models.sales_order_address¶
katana_public_api_client.models.sales_order_address
¶
Classes¶
SalesOrderAddress
¶
Billing or shipping address associated with a sales order, containing complete contact and location information
Example
{'id': 1201, 'sales_order_id': 2001, 'entity_type': 'shipping', 'first_name': 'Sarah', 'last_name': 'Johnson', 'company': "Johnson's Restaurant", 'phone': '+1-503-555-0123', 'line_1': '123 Main Street', 'line_2': 'Suite 4B', 'city': 'Portland', 'state': 'OR', 'zip': '97201', 'country': 'US', 'created_at': '2024-01-15T10:00:00Z', 'updated_at': '2024-01-15T10:00:00Z'}
Attributes:
-
id(int) –Unique identifier
-
sales_order_id(int) –ID of the sales order this address belongs to
-
entity_type(AddressEntityType) –Address type - billing for invoicing, shipping for delivery
-
created_at(datetime | Unset) –Timestamp when the entity was first created
-
updated_at(datetime | Unset) –Timestamp when the entity was last updated
-
deleted_at(datetime | None | Unset) –Nullable deletion timestamp
-
first_name(None | str | Unset) –First name of the contact person
-
last_name(None | str | Unset) –Last name of the contact person
-
company(None | str | Unset) –Company name for business deliveries
-
phone(None | str | Unset) –Contact phone number for delivery coordination
-
line_1(None | str | Unset) –Primary address line (street address)
-
line_2(None | str | Unset) –Secondary address line (apartment, suite, etc.)
-
city(None | str | Unset) –City name
-
state(None | str | Unset) –State or province
-
zip_(None | str | Unset) –Postal or ZIP code
-
country(None | str | Unset) –Country code (e.g., US, CA, GB)