activate_user_by_third_party_activation_code_request module#

class edgeimpulse_api.models.activate_user_by_third_party_activation_code_request.ActivateUserByThirdPartyActivationCodeRequest(
*,
activationCode: StrictStr,
password: StrictStr,
name: StrictStr | None = None,
username: StrictStr,
privacyPolicy: StrictBool | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
activation_code: StrictStr#
classmethod from_dict(
obj: dict,
) ActivateUserByThirdPartyActivationCodeRequest[source]#

Create an instance of ActivateUserByThirdPartyActivationCodeRequest from a dict

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

Create an instance of ActivateUserByThirdPartyActivationCodeRequest from a JSON string

name: StrictStr | None#
password: StrictStr#
privacy_policy: StrictBool | None#
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

username: StrictStr#