RandomFursuitResponse

@Serializable
data class RandomFursuitResponse(val success: Boolean, val fursuit: RandomFursuit? = null, val fursuits: List<RandomFursuit>? = null, val count: Int? = null, val requestedCount: Int? = null, val debugInfo: RandomDebugInfo? = null, val requestId: String)

Response for random fursuit recommendation supporting single and multiple results.

Constructors

Link copied to clipboard
constructor(success: Boolean, fursuit: RandomFursuit? = null, fursuits: List<RandomFursuit>? = null, count: Int? = null, requestedCount: Int? = null, debugInfo: RandomDebugInfo? = null, requestId: String)

Properties

Link copied to clipboard
@SerialName(value = "count")
val count: Int?
Link copied to clipboard
@SerialName(value = "debug_info")
val debugInfo: RandomDebugInfo?
Link copied to clipboard
@SerialName(value = "fursuit")
val fursuit: RandomFursuit?
Link copied to clipboard
@SerialName(value = "fursuits")
val fursuits: List<RandomFursuit>?
Link copied to clipboard
@SerialName(value = "requested_count")
val requestedCount: Int?
Link copied to clipboard
@SerialName(value = "requestId")
val requestId: String
Link copied to clipboard
@SerialName(value = "success")
val success: Boolean