Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

UpdateRecordRequest.md

File metadata and controls

33 lines (24 loc) · 1.16 KB

UpdateRecordRequest

A request to update the properties of a record.

Properties

Name Type Description Notes
completion str [optional]
has_upvote bool Whether the user upvoted the completion.
id int
is_accepted bool Whether the completion is accepted by the user.

Example

from wordlift_client.models.update_record_request import UpdateRecordRequest

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

# convert the object into a dict
update_record_request_dict = update_record_request_instance.to_dict()
# create an instance of UpdateRecordRequest from a dict
update_record_request_from_dict = UpdateRecordRequest.from_dict(update_record_request_dict)

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