Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

ChunkLineageResponse

Single chunk lineage edge response.

Properties

Name Type Description Notes
parent_chunk_id UUID Parent chunk ID
chunk_id UUID Child chunk ID
tenant_id UUID Tenant ID
created_at datetime Creation timestamp

Example

from ksapi.models.chunk_lineage_response import ChunkLineageResponse

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

# convert the object into a dict
chunk_lineage_response_dict = chunk_lineage_response_instance.to_dict()
# create an instance of ChunkLineageResponse from a dict
chunk_lineage_response_from_dict = ChunkLineageResponse.from_dict(chunk_lineage_response_dict)

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