admin_api_project module#

class edgeimpulse_api.models.admin_api_project.AdminApiProject(
*,
id: StrictInt,
name: StrictStr,
description: StrictStr | None = None,
created: datetime | None = None,
owner: StrictStr,
ownerUserId: StrictInt | None = None,
ownerOrganizationId: StrictInt | None = None,
lastAccessed: datetime | None = None,
whitelabelId: StrictInt | None = None,
tier: ProjectTierEnum | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
created: datetime | None#
description: StrictStr | None#
classmethod from_dict(
obj: dict,
) AdminApiProject[source]#

Create an instance of AdminApiProject from a dict

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

Create an instance of AdminApiProject from a JSON string

id: StrictInt#
last_accessed: datetime | None#
name: StrictStr#
owner: StrictStr#
owner_organization_id: StrictInt | None#
owner_user_id: StrictInt | None#
tier: ProjectTierEnum | None#
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#