github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/CompletePresignMultipartUpload.md (about)

     1  # CompletePresignMultipartUpload
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **physical_address** | **str** |  | 
     9  **parts** | [**List[UploadPart]**](UploadPart.md) | List of uploaded parts, should be ordered by ascending part number | 
    10  **user_metadata** | **Dict[str, str]** |  | [optional] 
    11  **content_type** | **str** | Object media type | [optional] 
    12  
    13  ## Example
    14  
    15  ```python
    16  from lakefs_sdk.models.complete_presign_multipart_upload import CompletePresignMultipartUpload
    17  
    18  # TODO update the JSON string below
    19  json = "{}"
    20  # create an instance of CompletePresignMultipartUpload from a JSON string
    21  complete_presign_multipart_upload_instance = CompletePresignMultipartUpload.from_json(json)
    22  # print the JSON string representation of the object
    23  print CompletePresignMultipartUpload.to_json()
    24  
    25  # convert the object into a dict
    26  complete_presign_multipart_upload_dict = complete_presign_multipart_upload_instance.to_dict()
    27  # create an instance of CompletePresignMultipartUpload from a dict
    28  complete_presign_multipart_upload_form_dict = complete_presign_multipart_upload.from_dict(complete_presign_multipart_upload_dict)
    29  ```
    30  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    31  
    32