Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.95 KB

File metadata and controls

44 lines (35 loc) · 1.95 KB

DataSourceTableResponse

Modeled-table response; a discriminated-union variant for listings. The table's schema is its parent DataSourceSchema PDO; the table no longer carries a schema_name of its own.

Properties

Name Type Description Notes
part_type str Path part type [optional] [default to 'DATA_SOURCE_TABLE']
id UUID
path_part_id UUID DATA_SOURCE_TABLE path_part of this table
parent_path_part_id UUID DATA_SOURCE_SCHEMA path_part of the parent schema
materialized_path str Full materialized path from root
tenant_id UUID
name str
data_source_id UUID
data_source_schema_id UUID PDO id of the parent schema this table belongs to
table_name str
column_config List[Dict[str, object]]
approval_state PathPartApprovalState
permissions ItemPermissions
created_at datetime
updated_at datetime

Example

from ksapi.models.data_source_table_response import DataSourceTableResponse

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

# convert the object into a dict
data_source_table_response_dict = data_source_table_response_instance.to_dict()
# create an instance of DataSourceTableResponse from a dict
data_source_table_response_from_dict = DataSourceTableResponse.from_dict(data_source_table_response_dict)

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