Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 925 Bytes

File metadata and controls

29 lines (20 loc) · 925 Bytes

FieldValueRequest

Properties

Name Type Description Notes
value str

Example

from wordlift_client.models.field_value_request import FieldValueRequest

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

# convert the object into a dict
field_value_request_dict = field_value_request_instance.to_dict()
# create an instance of FieldValueRequest from a dict
field_value_request_from_dict = FieldValueRequest.from_dict(field_value_request_dict)

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