SubmitFeedbackFeedbackRequest

@Serializable
data class SubmitFeedbackFeedbackRequest(val id: String? = null, val languageCode: String, val ratingSystem: Int, val triggerType: TriggerTypeSDK, val index: Int, val rating: String, val sentiment: String, val buttonsChosen: List<String>, val freeformText: String?, val formTitle: String?)

Constructors

Link copied to clipboard
constructor(id: String? = null, languageCode: String, ratingSystem: Int, triggerType: TriggerTypeSDK, index: Int, rating: String, sentiment: String, buttonsChosen: List<String>, freeformText: String?, formTitle: String?)

Properties

Link copied to clipboard
@SerialName(value = "buttons_chosen")
val buttonsChosen: List<String>
Link copied to clipboard
@SerialName(value = "form_title")
val formTitle: String?
Link copied to clipboard
@SerialName(value = "freeform_text")
val freeformText: String?
Link copied to clipboard
@SerialName(value = "id")
val id: String?
Link copied to clipboard
@SerialName(value = "index")
val index: Int
Link copied to clipboard
@SerialName(value = "language_code")
val languageCode: String
Link copied to clipboard
@SerialName(value = "rating")
val rating: String
Link copied to clipboard
@SerialName(value = "rating_system")
val ratingSystem: Int
Link copied to clipboard
@SerialName(value = "sentiment")
val sentiment: String
Link copied to clipboard
@SerialName(value = "trigger_type")
val triggerType: TriggerTypeSDK