Name |
Type |
Description |
Notes |
tenant_id |
str |
Your customer tenant id |
|
customer_id |
str |
Your customer number |
|
secret |
str |
IDM client secret |
|
from pfruck_contabo.models.client_secret_response import ClientSecretResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ClientSecretResponse from a JSON string
client_secret_response_instance = ClientSecretResponse.from_json(json)
# print the JSON string representation of the object
print(ClientSecretResponse.to_json())
# convert the object into a dict
client_secret_response_dict = client_secret_response_instance.to_dict()
# create an instance of ClientSecretResponse from a dict
client_secret_response_from_dict = ClientSecretResponse.from_dict(client_secret_response_dict)
[Back to Model list] [Back to API list] [Back to README]