send_user_feedback_request module#

class edgeimpulse_api.models.send_user_feedback_request.SendUserFeedbackRequest(
*,
type: StrictStr,
subject: StrictStr,
body: StrictStr,
workEmail: StrictStr | None = None,
company: StrictStr | None = None,
jobTitle: StrictStr | None = None,
companySize: StrictStr | None = None,
organizationId: float | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
body: StrictStr#
company: StrictStr | None#
company_size: StrictStr | None#
classmethod from_dict(
obj: dict,
) SendUserFeedbackRequest[source]#

Create an instance of SendUserFeedbackRequest from a dict

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

Create an instance of SendUserFeedbackRequest from a JSON string

job_title: StrictStr | None#
organization_id: float | None#
subject: StrictStr#
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

type: StrictStr#
classmethod type_validate_enum(v)[source]#
work_email: StrictStr | None#