project module#

class edgeimpulse_api.models.project.Project(
*,
id: StrictInt,
name: StrictStr,
description: StrictStr,
created: datetime,
owner: StrictStr,
lastAccessed: datetime | None = None,
logo: StrictStr | None = None,
ownerUserId: StrictInt | None = None,
ownerOrganizationId: StrictInt | None = None,
ownerAvatar: StrictStr | None = None,
ownerIsDeveloperProfile: StrictBool,
developerProfileUserId: StrictInt | None = None,
collaborators: List[ProjectCollaborator],
labelingMethod: StrictStr,
metadata: Dict[str, Any],
dataExplorerScreenshot: StrictStr | None = None,
isEnterpriseProject: StrictBool,
whitelabelId: StrictInt | None,
tags: List[StrictStr] | None = None,
category: StrictStr | None = None,
license: StrictStr | None = None,
tier: ProjectTierEnum,
hasPublicVersion: StrictBool,
isPublic: StrictBool,
allowsLivePublicAccess: StrictBool,
indPauseProcessingSamples: StrictBool,
publicProjectListed: StrictBool,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
allows_live_public_access: StrictBool#
category: StrictStr | None#
collaborators: List[ProjectCollaborator]#
created: datetime#
data_explorer_screenshot: StrictStr | None#
description: StrictStr#
developer_profile_user_id: StrictInt | None#
classmethod from_dict(obj: dict) Project[source]#

Create an instance of Project from a dict

classmethod from_json(json_str: str) Project[source]#

Create an instance of Project from a JSON string

has_public_version: StrictBool#
id: StrictInt#
ind_pause_processing_samples: StrictBool#
is_enterprise_project: StrictBool#
is_public: StrictBool#
labeling_method: StrictStr#
classmethod labeling_method_validate_enum(v)[source]#
last_accessed: datetime | None#
license: StrictStr | None#
metadata: Dict[str, Any]#
name: StrictStr#
owner: StrictStr#
owner_avatar: StrictStr | None#
owner_is_developer_profile: StrictBool#
owner_organization_id: StrictInt | None#
owner_user_id: StrictInt | None#
public_project_listed: StrictBool#
tags: List[StrictStr] | None#
tier: ProjectTierEnum#
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

whitelabel_id: StrictInt | None#