fleet-memory/hindsight-clients/python/hindsight_client_api/docs/BackgroundResponse.md
Nicolò Boschi 06b956a553 new names
2025-12-04 21:34:05 +01:00

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)

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