Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

GetAnalyticsData.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

GetAnalyticsData

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.get_analytics_data import GetAnalyticsData

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

# convert the object into a dict
get_analytics_data_dict = get_analytics_data_instance.to_dict()
# create an instance of GetAnalyticsData from a dict
get_analytics_data_from_dict = GetAnalyticsData.from_dict(get_analytics_data_dict)

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