SimpleRenderingDTO

@Serializable
data class SimpleRenderingDTO(val logo: RenderingImageDTO? = null, val backgroundImage: RenderingImageDTO? = null, val backgroundColor: String? = null, val textColor: String? = null)

Constructors

Link copied to clipboard
constructor(logo: RenderingImageDTO? = null, backgroundImage: RenderingImageDTO? = null, backgroundColor: String? = null, textColor: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "background_color")
@SerializedName(value = "background_color")
val backgroundColor: String?
Link copied to clipboard
@SerialName(value = "background_image")
@SerializedName(value = "background_image")
val backgroundImage: RenderingImageDTO?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "text_color")
@SerializedName(value = "text_color")
val textColor: String?