Feedback Event
class FeedbackEvent @JvmOverloads constructor(val reason: String, val text: String? = null, val screenshot: Bitmap? = null, val sessionId: String? = null, val feedbackId: String? = null)
Feedback information, provided by user.
Constructors
Types
Link copied to clipboard
annotation class FeedbackReason
Search feedback reason.
Functions
Link copied to clipboard
fun copy(reason: String = this.reason, text: String? = this.text, screenshot: Bitmap? = this.screenshot, sessionId: String? = this.sessionId, feedbackId: String? = this.feedbackId): FeedbackEvent
Creates new FeedbackEvent from current instance.