project_private_data module#

class edgeimpulse_api.models.project_private_data.ProjectPrivateData(
*,
lastAccessed: datetime | None = None,
metadata: Dict[str, Any],
dataExplorerScreenshot: StrictStr | None = None,
isEnterpriseProject: StrictBool,
collaborators: List[ProjectCollaborator] | None = None,
whitelabelId: StrictInt | None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
collaborators: List[ProjectCollaborator] | None#
data_explorer_screenshot: StrictStr | None#
classmethod from_dict(
obj: dict,
) ProjectPrivateData[source]#

Create an instance of ProjectPrivateData from a dict

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

Create an instance of ProjectPrivateData from a JSON string

is_enterprise_project: StrictBool#
last_accessed: datetime | None#
metadata: Dict[str, Any]#
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#