Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

ClientUsageInfo.md

File metadata and controls

33 lines (24 loc) · 1.07 KB

ClientUsageInfo

Properties

Name Type Description Notes
access_id str [optional]
access_type str [optional]
auth_method_name str [optional]
client_unique_id str [optional]
exceeded_clients int [optional]

Example

from akeyless.models.client_usage_info import ClientUsageInfo

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

# convert the object into a dict
client_usage_info_dict = client_usage_info_instance.to_dict()
# create an instance of ClientUsageInfo from a dict
client_usage_info_from_dict = ClientUsageInfo.from_dict(client_usage_info_dict)

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