import { JackpotHtmlTemplate } from './JackpotHtmlTemplate'; interface JackpotPublicMeta { /** name of the jackpot */ name: string; /** description/rules of the jackpot */ description: string; /** image url of the jackpot */ image_url: string; /** HTML template for the winner of the jackpt */ winner_template: JackpotHtmlTemplate; /** HTML template for the not winner of the jackpot */ not_winner_template: JackpotHtmlTemplate; /** custom value of placeholder1 defined by operator and can be used in the HTML templates */ placeholder1: string; /** custom value of placeholder2 defined by operator and can be used in the HTML templates */ placeholder2: string; /** operator-defined display order, ascending; sent as a string */ priority: string; /** * Custom data that can be used in API to build custom UI. * `jackpotGet()` returns this already parsed — an object when the operator stored JSON, * otherwise the raw string. Elsewhere (e.g. the jackpot-win push) it arrives unparsed. * You can request from Smartico to define fields for your specific case that will be managed from Smartico BackOffice * Read more here - */ custom_data: any; } export { JackpotPublicMeta };