Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

CustomApikeyfederation.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

CustomApikeyfederation

A Custom Apikeyfederation Object

Properties

Name Type Description Notes
s_apikeyfederation_key str The key of the Apikeyfederation
s_apikeyfederation_secret str The secret of the Apikeyfederation

Example

from eZmaxApi.models.custom_apikeyfederation import CustomApikeyfederation

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

# convert the object into a dict
custom_apikeyfederation_dict = custom_apikeyfederation_instance.to_dict()
# create an instance of CustomApikeyfederation from a dict
custom_apikeyfederation_from_dict = CustomApikeyfederation.from_dict(custom_apikeyfederation_dict)

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