General Revenue Impl

@Serializable
data class GeneralRevenueImpl(val id: String, val title: String, val value: Double, val revenueDate: Long, val labels: List<RevenueLabel> = emptyList(), val description: String = "") : GeneralRevenue

The GeneralRevenueImpl class is the default implementation of the GeneralRevenue

Author

N7ghtm4r3 - Tecknobit

See also

Constructors

Link copied to clipboard
constructor(id: String, title: String, value: Double, revenueDate: Long, labels: List<RevenueLabel> = emptyList(), description: String = "")

Properties

Link copied to clipboard
open override val description: String

The description of the revenue

Link copied to clipboard
open override val id: String

The identifier of the revenue

Link copied to clipboard
open override val labels: List<RevenueLabel>

The labels attached to revenue

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

The date of the revenue

Link copied to clipboard
open override val title: String

The title of the revenue

Link copied to clipboard
open override val value: Double

The value of the revenue