Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 933 Bytes

File metadata and controls

29 lines (20 loc) · 933 Bytes

RotateApiKeyInput

Properties

Name Type Description Notes
name str [optional]

Example

from stratum.models.rotate_api_key_input import RotateApiKeyInput

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

# convert the object into a dict
rotate_api_key_input_dict = rotate_api_key_input_instance.to_dict()
# create an instance of RotateApiKeyInput from a dict
rotate_api_key_input_from_dict = RotateApiKeyInput.from_dict(rotate_api_key_input_dict)

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