Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

File metadata and controls

34 lines (25 loc) · 1.12 KB

ModelTableResult

Per-item outcome of a bulk table import.

Properties

Name Type Description Notes
table_name str
schema_name str [optional]
status str
table DataSourceTableResponse [optional]
error str [optional]

Example

from ksapi.models.model_table_result import ModelTableResult

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

# convert the object into a dict
model_table_result_dict = model_table_result_instance.to_dict()
# create an instance of ModelTableResult from a dict
model_table_result_from_dict = ModelTableResult.from_dict(model_table_result_dict)

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