Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 916 Bytes

File metadata and controls

30 lines (21 loc) · 916 Bytes

SortBodyField

Properties

Name Type Description Notes
var_field str [optional]
order str [optional]

Example

from cyperf.models.sort_body_field import SortBodyField

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

# convert the object into a dict
sort_body_field_dict = sort_body_field_instance.to_dict()
# create an instance of SortBodyField from a dict
sort_body_field_from_dict = SortBodyField.from_dict(sort_body_field_dict)

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