| 123456789101112131415161718192021222324252627282930313233 |
- export type AlertConfigResponse = {
- list: AlertConfigItem[];
- widgetToken: string|null;
- };
- export type AlertConfigItem = {
- id: number;
- title: string;
- amount: number;
- matchType: number;
- message: string;
- playDelaySec: number;
- displayDurationSec: number;
- popupEffect: string|null;
- textEffect: string|null;
- nicknameFontFamily: string|null;
- nicknameFontSize: number;
- nicknameFontColor: string;
- amountFontFamily: string|null;
- amountFontSize: number;
- amountFontColor: string;
- messageFontFamily: string|null;
- messageFontSize: number;
- messageFontColor: string;
- templateFontFamily: string|null;
- templateFontSize: number;
- templateFontColor: string;
- enableImage: boolean;
- imageUrl: string|null;
- enableSound: boolean;
- soundUrl: string|null;
- isActive: boolean;
- };
|