Project

class edgeimpulse_api.models.project.Project(
		**data: Any
)
Create a new model by parsing and validating input data from keyword arguments. Raises ValidationError if the input data cannot be parsed to form a valid model. Parameters
  • **data: Any
Bases
  • pydantic.main.BaseModel
  • pydantic.utils.Representation
Class variables
  • Config The type of the None singleton.
  • allows_live_public_access: pydantic.types.StrictBool The type of the None singleton.
  • category: pydantic.types.StrictStr | None The type of the None singleton.
  • collaborators: List[edgeimpulse_api.models.project_collaborator.ProjectCollaborator] The type of the None singleton.
  • created: datetime.datetime The type of the None singleton.
  • data_explorer_screenshot: pydantic.types.StrictStr | None The type of the None singleton.
  • deleted_date: datetime.datetime | None The type of the None singleton.
  • description: pydantic.types.StrictStr The type of the None singleton.
  • developer_profile_user_id: pydantic.types.StrictInt | None The type of the None singleton.
  • full_deletion_date: datetime.datetime | None The type of the None singleton.
  • has_public_version: pydantic.types.StrictBool The type of the None singleton.
  • id: pydantic.types.StrictInt The type of the None singleton.
  • ind_pause_processing_samples: pydantic.types.StrictBool The type of the None singleton.
  • is_enterprise_project: pydantic.types.StrictBool The type of the None singleton.
  • is_public: pydantic.types.StrictBool The type of the None singleton.
  • labeling_method: pydantic.types.StrictStr The type of the None singleton.
  • last_accessed: datetime.datetime | None The type of the None singleton.
  • last_modification_details: pydantic.types.StrictStr | None The type of the None singleton.
  • last_modified: datetime.datetime | None The type of the None singleton.
  • license: edgeimpulse_api.models.public_project_license.PublicProjectLicense | None The type of the None singleton.
  • logo: pydantic.types.StrictStr | None The type of the None singleton.
  • metadata: Dict[str, Any] The type of the None singleton.
  • name: pydantic.types.StrictStr The type of the None singleton.
  • owner: pydantic.types.StrictStr The type of the None singleton.
  • owner_avatar: pydantic.types.StrictStr | None The type of the None singleton.
  • owner_is_developer_profile: pydantic.types.StrictBool The type of the None singleton.
  • owner_organization_id: pydantic.types.StrictInt | None The type of the None singleton.
  • owner_user_id: pydantic.types.StrictInt | None The type of the None singleton.
  • public_project_listed: pydantic.types.StrictBool The type of the None singleton.
  • scheduled_full_deletion_date: datetime.datetime | None The type of the None singleton.
  • tags: List[pydantic.types.StrictStr] | None The type of the None singleton.
  • tier: edgeimpulse_api.models.project_tier_enum.ProjectTierEnum The type of the None singleton.
  • whitelabel_id: pydantic.types.StrictInt | None The type of the None singleton.
  • whitelabel_name: pydantic.types.StrictStr | None The type of the None singleton.

Static methods

category_validate_enum

edgeimpulse_api.models.project.category_validate_enum(
		v
)
Parameters
  • v

from_dict

edgeimpulse_api.models.project.from_dict(
		obj: dict
) ‑> edgeimpulse_api.models.project.Project
Create an instance of Project from a dict Parameters
  • obj: dict
Return edgeimpulse_api.models.project.Project

from_json

edgeimpulse_api.models.project.from_json(
		json_str: str
) ‑> edgeimpulse_api.models.project.Project
Create an instance of Project from a JSON string Parameters
  • json_str: str
Return edgeimpulse_api.models.project.Project

labeling_method_validate_enum

edgeimpulse_api.models.project.labeling_method_validate_enum(
		v
)
Parameters
  • v

Methods

to_dict

edgeimpulse_api.models.project.to_dict(
		self
)
Returns the dictionary representation of the model using alias Parameters
  • self

to_json

edgeimpulse_api.models.project.to_json(
		self,
		indent=None
) ‑> str
Returns the JSON representation of the model using alias Parameters
  • self
  • indent=None
Return str

to_str

edgeimpulse_api.models.project.to_str(
		self
) ‑> str
Returns the string representation of the model using alias Parameters
  • self
Return str