admin_api_user_all_of module#

class edgeimpulse_api.models.admin_api_user_all_of.AdminApiUserAllOf(
*,
email: StrictStr,
activated: StrictBool,
organizations: List[UserOrganization],
projects: List[Project],
experiments: List[UserExperiment],
evaluation: StrictBool | None = None,
ambassador: StrictBool | None = None,
tier: UserTierEnum,
lastSeen: datetime | None = None,
suspended: StrictBool,
trials: List[EnterpriseTrial],
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
activated: StrictBool#
ambassador: StrictBool | None#
email: StrictStr#
evaluation: StrictBool | None#
experiments: List[UserExperiment]#
classmethod from_dict(
obj: dict,
) AdminApiUserAllOf[source]#

Create an instance of AdminApiUserAllOf from a dict

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

Create an instance of AdminApiUserAllOf from a JSON string

last_seen: datetime | None#
organizations: List[UserOrganization]#
projects: List[Project]#
suspended: StrictBool#
tier: UserTierEnum#
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

trials: List[EnterpriseTrial]#