organization_data_item module#

class edgeimpulse_api.models.organization_data_item.OrganizationDataItem(
*,
id: StrictInt,
name: StrictStr,
bucketId: StrictInt,
bucketName: StrictStr,
bucketPath: StrictStr,
dataset: StrictStr,
totalFileCount: StrictInt,
totalFileSize: StrictInt,
created: datetime,
metadata: Dict[str, StrictStr],
files: List[OrganizationDataItemFilesInner],
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
bucket_id: StrictInt#
bucket_name: StrictStr#
bucket_path: StrictStr#
created: datetime#
dataset: StrictStr#
files: List[OrganizationDataItemFilesInner]#
classmethod from_dict(
obj: dict,
) OrganizationDataItem[source]#

Create an instance of OrganizationDataItem from a dict

classmethod from_json(
json_str: str,
) OrganizationDataItem[source]#

Create an instance of OrganizationDataItem from a JSON string

id: StrictInt#
metadata: Dict[str, StrictStr]#
name: StrictStr#
to_dict()[source]#

Returns the dictionary representation of the model using alias

to_json() str[source]#

Returns the JSON representation of the model using alias

to_str() str[source]#

Returns the string representation of the model using alias

total_file_count: StrictInt#
total_file_size: StrictInt#