Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 2.12 KB

File metadata and controls

33 lines (24 loc) · 2.12 KB

CreateApplicationAPIKey

Properties

Name Type Description Notes
title str Title of the API key.
expires datetime The date the API key expires.
platform str The third-party platform the API key is valid for. Use `none` for a generic API key to be used from your own integration layer. [optional]
type str The API key type. Can be empty or `staging`. Staging API keys can only be used for dry requests with the Update customer session endpoint, Update customer profile endpoint, and Track event endpoint. When using the Update customer profile endpoint with a staging API key, the query parameter `runRuleEngine` must be `true`. [optional]
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. [optional]

Example

from talon_one.models.create_application_api_key import CreateApplicationAPIKey

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

# convert the object into a dict
create_application_api_key_dict = create_application_api_key_instance.to_dict()
# create an instance of CreateApplicationAPIKey from a dict
create_application_api_key_from_dict = CreateApplicationAPIKey.from_dict(create_application_api_key_dict)

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