project

edgeimpulse_api v1.0.0

edgeimpulse_api.models.project module

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

Bases: BaseModel

class Config()

Bases: object

allow_population_by_field_name(_ = Tru_ )

validate_assignment(_ = Tru_ )

category(: Optional[StrictStr )

collaborators(: List[ProjectCollaborator )

created(: datetim )

data_explorer_screenshot(: Optional[StrictStr )

description(: StrictSt )

classmethod from_dict(obj: dict)

Create an instance of Project from a dict

classmethod from_json(json_str: str)

Create an instance of Project from a JSON string

has_public_version(: StrictBoo )

id(: StrictIn )

is_enterprise_project(: StrictBoo )

labeling_method(: StrictSt )

classmethod labeling_method_validate_enum(v)

last_accessed(: Optional[datetime )

license(: Optional[StrictStr )

logo(: Optional[StrictStr )

metadata(: Dict[str, Any )

name(: StrictSt )

owner(: StrictSt )

owner_avatar(: Optional[StrictStr )

owner_is_developer_profile(: StrictBoo )

owner_organization_id(: Optional[StrictInt )

owner_user_id(: Optional[StrictInt )

tags(: Optional[List[StrictStr] )

tier(: StrictSt )

classmethod tier_validate_enum(v)

to_dict()

Returns the dictionary representation of the model using alias

to_json()

Returns the JSON representation of the model using alias

to_str()

Returns the string representation of the model using alias

whitelabel_id(: Optional[StrictInt )

Last updated

Was this helpful?