get_user_response_all_of module#

class edgeimpulse_api.models.get_user_response_all_of.GetUserResponseAllOf(
*,
email: StrictStr,
activated: StrictBool,
organizations: List[UserOrganization],
projects: List[Project],
experiments: List[UserExperiment],
evaluation: StrictBool | None = None,
ambassador: StrictBool | None = None,
tier: UserTierEnum,
whitelabels: List[GetUserResponseAllOfWhitelabels] | None = None,
suspended: StrictBool,
notifications: List[StrictStr],
)[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,
) GetUserResponseAllOf[source]#

Create an instance of GetUserResponseAllOf from a dict

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

Create an instance of GetUserResponseAllOf from a JSON string

notifications: List[StrictStr]#
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

whitelabels: List[GetUserResponseAllOfWhitelabels] | None#