1 KiB
1 KiB
BackgroundResponse
Response model for background update.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| background | str | ||
| disposition | DispositionTraits | [optional] |
Example
from hindsight_client_api.models.background_response import BackgroundResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BackgroundResponse from a JSON string
background_response_instance = BackgroundResponse.from_json(json)
# print the JSON string representation of the object
print(BackgroundResponse.to_json())
# convert the object into a dict
background_response_dict = background_response_instance.to_dict()
# create an instance of BackgroundResponse from a dict
background_response_from_dict = BackgroundResponse.from_dict(background_response_dict)