Revenue Impl

@Serializable
data class RevenueImpl(val id: String, val title: String = "", val value: Double, val revenueDate: Long) : Revenue

The RevenueImpl class is the default implementation of the Revenue

Author

N7ghtm4r3 - Tecknobit

See also

Constructors

Link copied to clipboard
constructor(id: String, title: String = "", value: Double, revenueDate: Long)

Properties

Link copied to clipboard
open override val id: String

The identifier of the revenue

Link copied to clipboard
@SerialName(value = "revenue_date" )
open override val revenueDate: Long

The date of the revenue

Link copied to clipboard
@SerialName(value = "title" )
open override val title: String

The title of the revenue

Link copied to clipboard
open override val value: Double

The value of the revenue