Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.18 KB

File metadata and controls

29 lines (20 loc) · 1.18 KB

UpdateApplicationAPIKey

Properties

Name Type Description Notes
time_offset int A time offset in nanoseconds associated with the API key. When making a request using the API key, rule evaluation is based on a date that is calculated by adding the offset to the current date.

Example

from talon_one.models.update_application_api_key import UpdateApplicationAPIKey

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

# convert the object into a dict
update_application_api_key_dict = update_application_api_key_instance.to_dict()
# create an instance of UpdateApplicationAPIKey from a dict
update_application_api_key_from_dict = UpdateApplicationAPIKey.from_dict(update_application_api_key_dict)

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