Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

File metadata and controls

29 lines (21 loc) · 1.03 KB

BiasingProfileDto

Inline biasing profile, which should be applied to the search. Takes priority over biasing profile.

Properties

Name Type Description Notes
biases List[BiasDto]

Example

from gb_retailapi_client.models.biasing_profile_dto import BiasingProfileDto

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

# convert the object into a dict
biasing_profile_dto_dict = biasing_profile_dto_instance.to_dict()
# create an instance of BiasingProfileDto from a dict
biasing_profile_dto_form_dict = biasing_profile_dto.from_dict(biasing_profile_dto_dict)

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