PromoterResponse

data class PromoterResponse(var id: String? = null, var name: String? = null, var description: String? = null)

Represents a promoter response from the Discovery API.

Holds promoter details, including ID, name, and description.

Constructors

Link copied to clipboard
constructor(id: String? = null, name: String? = null, description: String? = null)

Properties

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

The promoter's description, if available.

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

The promoter's ID, if available.

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

The promoter's name, if available.