Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1004 Bytes

Bucket.md

File metadata and controls

31 lines (23 loc) · 1004 Bytes

Bucket

Properties

Name Type Description Notes
id int Unique identifier for the bucket [optional]
name str Name of the bucket [optional]
file_count int Number of files in the bucket [optional]
type str Type of cloud storage (aws, azure, etc) [optional]

Example

from openbuckets.models.bucket import Bucket

# TODO update the JSON string below
json = "{}"
# create an instance of Bucket from a JSON string
bucket_instance = Bucket.from_json(json)
# print the JSON string representation of the object
print Bucket.to_json()

# convert the object into a dict
bucket_dict = bucket_instance.to_dict()
# create an instance of Bucket from a dict
bucket_form_dict = bucket.from_dict(bucket_dict)

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