The contact information for the end user/customer provided by the reseller. Used to determine pricing and discounts.
| Name | Type | Description | Notes |
|---|---|---|---|
| contact | str | The contact name for the end user/customer. | [optional] |
| company_name | str | The company name for the end user/customer. | [optional] |
| address_line1 | str | The address line 1 for the end user/customer. | [optional] |
| address_line2 | str | The address line 2 for the end user/customer. | [optional] |
| address_line3 | str | The address line 3 for the end user/customer. | [optional] |
| city | str | The end user/customer's city. | [optional] |
| state | str | The end user/customer's state. | [optional] |
| postal_code | str | The end user/customer's zip or postal code. | [optional] |
| country_code | str | The end user/customer's two character ISO country code. | [optional] |
| phone_number | str | The end user/customer's phone number. | [optional] |
| str | The end user/customer's email. | [optional] |
from xi.sdk.resellers.models.order_detail_b2_b_end_user_info import OrderDetailB2BEndUserInfo
# TODO update the JSON string below
json = "{}"
# create an instance of OrderDetailB2BEndUserInfo from a JSON string
order_detail_b2_b_end_user_info_instance = OrderDetailB2BEndUserInfo.from_json(json)
# print the JSON string representation of the object
print(OrderDetailB2BEndUserInfo.to_json())
# convert the object into a dict
order_detail_b2_b_end_user_info_dict = order_detail_b2_b_end_user_info_instance.to_dict()
# create an instance of OrderDetailB2BEndUserInfo from a dict
order_detail_b2_b_end_user_info_from_dict = OrderDetailB2BEndUserInfo.from_dict(order_detail_b2_b_end_user_info_dict)