Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

CustomerFiscalEntitiesResponse.md

File metadata and controls

31 lines (22 loc) · 1.29 KB

CustomerFiscalEntitiesResponse

Properties

Name Type Description Notes
has_more bool Indicates if there are more pages to be requested
object str Object type, in this case is list
data List[CustomerFiscalEntitiesDataResponse] [optional]

Example

from conekta.models.customer_fiscal_entities_response import CustomerFiscalEntitiesResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CustomerFiscalEntitiesResponse from a JSON string
customer_fiscal_entities_response_instance = CustomerFiscalEntitiesResponse.from_json(json)
# print the JSON string representation of the object
print(CustomerFiscalEntitiesResponse.to_json())

# convert the object into a dict
customer_fiscal_entities_response_dict = customer_fiscal_entities_response_instance.to_dict()
# create an instance of CustomerFiscalEntitiesResponse from a dict
customer_fiscal_entities_response_from_dict = CustomerFiscalEntitiesResponse.from_dict(customer_fiscal_entities_response_dict)

[Back to Model list] [Back to API list] [Back to README]