Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 897 Bytes

File metadata and controls

29 lines (20 loc) · 897 Bytes

ManagerRequest

Properties

Name Type Description Notes
redeem_code str [optional]

Example

from wordlift_client.models.manager_request import ManagerRequest

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

# convert the object into a dict
manager_request_dict = manager_request_instance.to_dict()
# create an instance of ManagerRequest from a dict
manager_request_from_dict = ManagerRequest.from_dict(manager_request_dict)

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