Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 853 Bytes

File metadata and controls

29 lines (21 loc) · 853 Bytes

Refinement

Properties

Name Type Description Notes
value str
priority int

Example

from gb_retailapi_client.models.refinement import Refinement

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

# convert the object into a dict
refinement_dict = refinement_instance.to_dict()
# create an instance of Refinement from a dict
refinement_form_dict = refinement.from_dict(refinement_dict)

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