get_user_need_to_set_password_response module#

class edgeimpulse_api.models.get_user_need_to_set_password_response.GetUserNeedToSetPasswordResponse(
*,
success: StrictBool,
error: StrictStr | None = None,
email: StrictStr | None = None,
needPassword: StrictBool | None = None,
whitelabels: List[StrictStr] | None = None,
trials: List[EnterpriseTrial] | None = None,
emailVerified: StrictBool | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
email: StrictStr | None#
email_verified: StrictBool | None#
error: StrictStr | None#
classmethod from_dict(
obj: dict,
) GetUserNeedToSetPasswordResponse[source]#

Create an instance of GetUserNeedToSetPasswordResponse from a dict

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

Create an instance of GetUserNeedToSetPasswordResponse from a JSON string

need_password: StrictBool | None#
success: StrictBool#
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] | None#
whitelabels: List[StrictStr] | None#