Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

CreateChunkLineageRequest

Request to batch-create lineage edges for a child chunk.

Properties

Name Type Description Notes
chunk_id UUID Child chunk ID
parent_chunk_ids List[UUID] List of parent chunk IDs

Example

from ksapi.models.create_chunk_lineage_request import CreateChunkLineageRequest

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

# convert the object into a dict
create_chunk_lineage_request_dict = create_chunk_lineage_request_instance.to_dict()
# create an instance of CreateChunkLineageRequest from a dict
create_chunk_lineage_request_from_dict = CreateChunkLineageRequest.from_dict(create_chunk_lineage_request_dict)

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