Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 813 Bytes

Request2.md

File metadata and controls

29 lines (20 loc) · 813 Bytes

Request2

Properties

Name Type Description Notes
redeem_code str [optional]

Example

from wordlift_client.models.request2 import Request2

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

# convert the object into a dict
request2_dict = request2_instance.to_dict()
# create an instance of Request2 from a dict
request2_from_dict = Request2.from_dict(request2_dict)

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