Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ApiKeyDeletePostRequest

Properties

Name Type Description Notes
key_id str The id of the API key to delete

Example

from better_auth.models.api_key_delete_post_request import ApiKeyDeletePostRequest

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

# convert the object into a dict
api_key_delete_post_request_dict = api_key_delete_post_request_instance.to_dict()
# create an instance of ApiKeyDeletePostRequest from a dict
api_key_delete_post_request_from_dict = ApiKeyDeletePostRequest.from_dict(api_key_delete_post_request_dict)

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