Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

UpsertOverridesInputBody

Properties

Name Type Description Notes
overrides Dict[str, str] Token to name mappings. Empty string removes the override.

Example

from revengai.models.upsert_overrides_input_body import UpsertOverridesInputBody

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

# convert the object into a dict
upsert_overrides_input_body_dict = upsert_overrides_input_body_instance.to_dict()
# create an instance of UpsertOverridesInputBody from a dict
upsert_overrides_input_body_from_dict = UpsertOverridesInputBody.from_dict(upsert_overrides_input_body_dict)

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