Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

ClientResponse.md

File metadata and controls

33 lines (24 loc) · 1.06 KB

ClientResponse

Properties

Name Type Description Notes
tenant_id str Your customer tenant id
customer_id str Your customer number
id str Client's id
client_id str IDM client id
secret str IDM client secret

Example

from pfruck_contabo.models.client_response import ClientResponse

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

# convert the object into a dict
client_response_dict = client_response_instance.to_dict()
# create an instance of ClientResponse from a dict
client_response_from_dict = ClientResponse.from_dict(client_response_dict)

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