Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

Request3.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

Request3

Properties

Name Type Description Notes
completion str [optional]
has_upvote bool This indicates whether the user upvoted the completion.
is_accepted bool This indicates whether the completion is accepted by the user.
validated_at datetime Validation time of the record - null to revalidate. [optional]

Example

from wordlift_client.models.request3 import Request3

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

# convert the object into a dict
request3_dict = request3_instance.to_dict()
# create an instance of Request3 from a dict
request3_from_dict = Request3.from_dict(request3_dict)

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