| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | str | [optional] | |
| order | str | [optional] |
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)