SubmitFeedbackRequest¶
- pydantic model openapi_client.models.submit_feedback_request.SubmitFeedbackRequest¶
SubmitFeedbackRequest
- field message: StrictStr [Required] (alias 'Message')¶
Feedback text. Required. Empty string returns IPV-1001. Missing this key after the request reaches the handler returns HTTP 500.
- Constraints:
strict = True
- field issue_name: Optional[StrictStr] = None (alias 'IssueName')¶
Optional issue label. Defaults to n/a when omitted. Empty string returns IPV-1001.
- field path: Optional[StrictStr] = None (alias 'Path')¶
Optional UI or API path. Defaults to n/a when omitted. Empty string returns IPV-1001.
- field stack_trace: Optional[StrictStr] = None (alias 'StackTrace')¶
Optional stack trace. Defaults to n/a when omitted. Empty string returns IPV-1001.
- to_str()¶
Returns the string representation of the model using alias
- Return type:
str
- to_json()¶
Returns the JSON representation of the model using alias
- Return type:
str
- classmethod from_json(json_str)¶
Create an instance of SubmitFeedbackRequest from a JSON string
- Return type:
Optional[Self]
- to_dict()¶
Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic’s self.model_dump(by_alias=True):
None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.
- Return type:
Dict[str,Any]
- classmethod from_dict(obj)¶
Create an instance of SubmitFeedbackRequest from a dict
- Return type:
Optional[Self]