File details for a bucket object, these are automatically generated by the system.
| Name | Type | Description | Notes |
|---|---|---|---|
| filename | str | [optional] | |
| size_bytes | int | [optional] | |
| mime_type | str | [optional] | |
| hash | str | [optional] |
from mixpeek.models.blob_details import BlobDetails
# TODO update the JSON string below
json = "{}"
# create an instance of BlobDetails from a JSON string
blob_details_instance = BlobDetails.from_json(json)
# print the JSON string representation of the object
print(BlobDetails.to_json())
# convert the object into a dict
blob_details_dict = blob_details_instance.to_dict()
# create an instance of BlobDetails from a dict
blob_details_from_dict = BlobDetails.from_dict(blob_details_dict)