1.2 KiB
1.2 KiB
AddBackgroundRequest
Request model for adding/merging background information.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | New background information to add or merge | |
| update_disposition | bool | If true, infer Big Five disposition traits from the merged background (default: true) | [optional] [default to True] |
Example
from hindsight_client_api.models.add_background_request import AddBackgroundRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddBackgroundRequest from a JSON string
add_background_request_instance = AddBackgroundRequest.from_json(json)
# print the JSON string representation of the object
print(AddBackgroundRequest.to_json())
# convert the object into a dict
add_background_request_dict = add_background_request_instance.to_dict()
# create an instance of AddBackgroundRequest from a dict
add_background_request_from_dict = AddBackgroundRequest.from_dict(add_background_request_dict)