main
1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3from __future__ import annotations
4
5from typing_extensions import Required, TypedDict
6
7from .._types import SequenceNotStr
8
9__all__ = ["UploadCompleteParams"]
10
11
12class UploadCompleteParams(TypedDict, total=False):
13 part_ids: Required[SequenceNotStr[str]]
14 """The ordered list of Part IDs."""
15
16 md5: str
17 """
18 The optional md5 checksum for the file contents to verify if the bytes uploaded
19 matches what you expect.
20 """