github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/ObjectStageCreation.md (about) 1 # ObjectStageCreation 2 3 4 ## Properties 5 6 Name | Type | Description | Notes 7 ------------ | ------------- | ------------- | ------------- 8 **physical_address** | **str** | | 9 **checksum** | **str** | | 10 **size_bytes** | **int** | | 11 **mtime** | **int** | Unix Epoch in seconds | [optional] 12 **metadata** | **Dict[str, str]** | | [optional] 13 **content_type** | **str** | Object media type | [optional] 14 **force** | **bool** | | [optional] [default to False] 15 16 ## Example 17 18 ```python 19 from lakefs_sdk.models.object_stage_creation import ObjectStageCreation 20 21 # TODO update the JSON string below 22 json = "{}" 23 # create an instance of ObjectStageCreation from a JSON string 24 object_stage_creation_instance = ObjectStageCreation.from_json(json) 25 # print the JSON string representation of the object 26 print ObjectStageCreation.to_json() 27 28 # convert the object into a dict 29 object_stage_creation_dict = object_stage_creation_instance.to_dict() 30 # create an instance of ObjectStageCreation from a dict 31 object_stage_creation_form_dict = object_stage_creation.from_dict(object_stage_creation_dict) 32 ``` 33 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 34 35