ChallengeDetails

Describes the Details of a Challenge
data class ChallengeDetails(message: String,fields: List<Detail>,date: Date?)

Constructors

<init>
Link copied to clipboard
fun <init>(message: String, fields: List<Detail>, date: Date?)

Functions

component1
Link copied to clipboard
operator fun component1(): String
component2
Link copied to clipboard
operator fun component2(): List<Detail>
component3
Link copied to clipboard
operator fun component3(): Date?
copy
Link copied to clipboard
fun copy(message: String, fields: List<Detail>, date: Date?): ChallengeDetails
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

date
Link copied to clipboard
Date attached by the customer only received if the service has includeDate turned on
val date: Date?
fields
Link copied to clipboard
List with the additional details of a Challenge
val fields: List<Detail>
message
Link copied to clipboard
Associated message of the Challenge
val message: String