Response for GET /1/customer/{pksCustomerCode}/endpoint
Name | Type | Description | Notes |
---|---|---|---|
s_endpoint_url | str | The endpoint's URL |
from eZmaxApi.models.global_customer_get_endpoint_v1_response import GlobalCustomerGetEndpointV1Response
# TODO update the JSON string below
json = "{}"
# create an instance of GlobalCustomerGetEndpointV1Response from a JSON string
global_customer_get_endpoint_v1_response_instance = GlobalCustomerGetEndpointV1Response.from_json(json)
# print the JSON string representation of the object
print(GlobalCustomerGetEndpointV1Response.to_json())
# convert the object into a dict
global_customer_get_endpoint_v1_response_dict = global_customer_get_endpoint_v1_response_instance.to_dict()
# create an instance of GlobalCustomerGetEndpointV1Response from a dict
global_customer_get_endpoint_v1_response_from_dict = GlobalCustomerGetEndpointV1Response.from_dict(global_customer_get_endpoint_v1_response_dict)