Feedback

data class Feedback(id: String?, type: String?, text: String?, answers: MutableList<Answer>) : Parcelable

Functions

addAnswer
Link copied to clipboard
fun addAnswer(answer: Answer)
describeContents
Link copied to clipboard
abstract fun describeContents(): Int
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

answers
Link copied to clipboard
val answers: MutableList<Answer>
id
Link copied to clipboard
var id: String?
text
Link copied to clipboard
var text: String?
type
Link copied to clipboard
var type: String?