RecommendationDto

@Serializable
data class RecommendationDto(val items: List<BaseItemDto>? = null, val recommendationType: RecommendationType, val baselineItemName: String? = null, val categoryId: UUID)

Constructors

Link copied to clipboard
constructor(items: List<BaseItemDto>? = null, recommendationType: RecommendationType, baselineItemName: String? = null, categoryId: UUID)

Properties

Link copied to clipboard
@SerialName(value = "BaselineItemName")
val baselineItemName: String?
Link copied to clipboard
@SerialName(value = "CategoryId")
val categoryId: UUID
Link copied to clipboard
@SerialName(value = "Items")
val items: List<BaseItemDto>?
Link copied to clipboard
@SerialName(value = "RecommendationType")
val recommendationType: RecommendationType