Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

RefreshWarning

Non-fatal warning that occurred during a refresh operation. Used to report issues like failed deletion scheduling that don't prevent the refresh from succeeding.

Properties

Name Type Description Notes
message str
schema_name object [optional]
table_name object [optional]

Example

from hotdata.models.refresh_warning import RefreshWarning

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

# convert the object into a dict
refresh_warning_dict = refresh_warning_instance.to_dict()
# create an instance of RefreshWarning from a dict
refresh_warning_from_dict = RefreshWarning.from_dict(refresh_warning_dict)

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