RoiDTO

@Serializable
data class RoiDTO(val times: Double, val currency: String, val percentage: Double)

Represents the ROI (Return on Investment) data, which can be null. The actual fields might be different if the object is present.

Constructors

Link copied to clipboard
constructor(times: Double, currency: String, percentage: Double)

Properties

Link copied to clipboard
@SerialName(value = "currency")
val currency: String
Link copied to clipboard
@SerialName(value = "percentage")
val percentage: Double
Link copied to clipboard
@SerialName(value = "times")
val times: Double