Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

BlobDetails

File details for a bucket object, these are automatically generated by the system.

Properties

Name Type Description Notes
filename str [optional]
size_bytes int [optional]
mime_type str [optional]
hash str [optional]

Example

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)

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