create_user_request module#

class edgeimpulse_api.models.create_user_request.CreateUserRequest(
*,
name: StrictStr,
username: StrictStr,
email: StrictStr,
password: StrictStr | None = None,
projectName: StrictStr | None = None,
privacyPolicy: StrictBool,
activationToken: StrictStr | None = None,
identityProvider: StrictStr | None = None,
jobTitle: StrictStr | None = None,
sessionId: StrictStr | None = None,
companyName: StrictStr | None = None,
utmParams: List[Dict[str, Any]] | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
activation_token: StrictStr | None#
company_name: StrictStr | None#
email: StrictStr#
classmethod from_dict(
obj: dict,
) CreateUserRequest[source]#

Create an instance of CreateUserRequest from a dict

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

Create an instance of CreateUserRequest from a JSON string

identity_provider: StrictStr | None#
job_title: StrictStr | None#
name: StrictStr#
password: StrictStr | None#
privacy_policy: StrictBool#
project_name: StrictStr | None#
session_id: StrictStr | 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#
utm_params: List[Dict[str, Any]] | None#