organization_dataset module#

class edgeimpulse_api.models.organization_dataset.OrganizationDataset(
*,
dataset: StrictStr,
lastFileCreated: datetime,
totalFileSize: StrictInt,
totalFileCount: StrictInt,
totalItemCount: StrictInt,
totalItemCountChecklistOK: StrictInt,
totalItemCountChecklistFailed: StrictInt,
tags: List[StrictStr],
category: StrictStr | None = None,
bucket: OrganizationDatasetBucket | None = None,
type: StrictStr,
bucketPath: StrictStr | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
bucket: OrganizationDatasetBucket | None#
bucket_path: StrictStr | None#
category: StrictStr | None#
dataset: StrictStr#
classmethod from_dict(
obj: dict,
) OrganizationDataset[source]#

Create an instance of OrganizationDataset from a dict

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

Create an instance of OrganizationDataset from a JSON string

last_file_created: datetime#
tags: List[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#
total_item_count: StrictInt#
total_item_count_checklist_failed: StrictInt#
total_item_count_checklist_ok: StrictInt#
type: StrictStr#
classmethod type_validate_enum(v)[source]#