create_enterprise_trial_user_request_all_of module#

class edgeimpulse_api.models.create_enterprise_trial_user_request_all_of.CreateEnterpriseTrialUserRequestAllOf(
*,
name: StrictStr,
username: StrictStr,
email: StrictStr,
privacyPolicy: StrictBool,
password: StrictStr | None = None,
jobTitle: StrictStr | None = None,
companyName: StrictStr | None = None,
redirectUrlOrigin: StrictStr | None = None,
redirectUrlQueryParams: 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#
company_name: StrictStr | None#
email: StrictStr#
classmethod from_dict(
obj: dict,
) CreateEnterpriseTrialUserRequestAllOf[source]#

Create an instance of CreateEnterpriseTrialUserRequestAllOf from a dict

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

Create an instance of CreateEnterpriseTrialUserRequestAllOf from a JSON string

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