PublicSalesResponse

data class PublicSalesResponse(var startDateTime: String? = null, var startTBD: Boolean = false, var endDateTime: String? = null, var name: String? = null, var url: String? = null, var description: String? = null)

Represents public sales details in the Discovery API response.

Holds information about sales start, end, and related details.

Constructors

Link copied to clipboard
constructor(startDateTime: String? = null, startTBD: Boolean = false, endDateTime: String? = null, name: String? = null, url: String? = null, description: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "description")
var description: String?

The description of the sales period, if available.

Link copied to clipboard
@SerializedName(value = "endDateTime")
var endDateTime: String?

The end date and time of sales, if available.

Link copied to clipboard
@SerializedName(value = "name")
var name: String?

The name of the sales period, if available.

Link copied to clipboard
@SerializedName(value = "startDateTime")
var startDateTime: String?

The start date and time of sales, if available.

Link copied to clipboard
@SerializedName(value = "startTBD")
var startTBD: Boolean

Indicates if the start date is to be determined, defaults to false.

Link copied to clipboard
@SerializedName(value = "url")
var url: String?

The URL for the sales, if available.