Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.34 KB

File metadata and controls

36 lines (28 loc) · 1.34 KB

RuleVariant

Properties

Name Type Description Notes
biasing_profile_name str
included_navigations List[str]
template RuleTemplate
boosted_product_buckets List[BoostedProductBucket]
pinned_refinements List[PinnedRefinement]
sort Sort
value_filters List[ValueFilter]
search_filters List[SearchFilter]
range_filters List[RangeFilter]

Example

from gb_retailapi_client.models.rule_variant import RuleVariant

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

# convert the object into a dict
rule_variant_dict = rule_variant_instance.to_dict()
# create an instance of RuleVariant from a dict
rule_variant_form_dict = rule_variant.from_dict(rule_variant_dict)

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