Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

DataForSeoOrderByRule

Properties

Name Type Description Notes
var_field str Field to sort by. See the endpoint's list of sortable fields.
dir str Sort direction: asc or desc. Defaults to desc. [optional] [default to 'desc']

Example

from unifapi.models.data_for_seo_order_by_rule import DataForSeoOrderByRule

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

# convert the object into a dict
data_for_seo_order_by_rule_dict = data_for_seo_order_by_rule_instance.to_dict()
# create an instance of DataForSeoOrderByRule from a dict
data_for_seo_order_by_rule_from_dict = DataForSeoOrderByRule.from_dict(data_for_seo_order_by_rule_dict)

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