Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

ApikeyRequest.md

File metadata and controls

34 lines (25 loc) · 1.23 KB

ApikeyRequest

An Apikey Object

Properties

Name Type Description Notes
pki_apikey_id int The unique ID of the Apikey [optional]
fki_user_id int The unique ID of the User
obj_apikey_description MultilingualApikeyDescription
b_apikey_isactive bool Whether the apikey is active or not [optional]
b_apikey_issigned bool Whether the apikey is signed or not [optional]

Example

from eZmaxApi.models.apikey_request import ApikeyRequest

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

# convert the object into a dict
apikey_request_dict = apikey_request_instance.to_dict()
# create an instance of ApikeyRequest from a dict
apikey_request_form_dict = apikey_request.from_dict(apikey_request_dict)

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