@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 1.19 kB
TypeScript
import { PhoneNumber } from '../PhoneNumber';
import { TimeConditionsSettingsForwardTypeEnum } from './TimeConditionsSettingsForwardTypeEnum';
/** Easy hunting time conditions options */
export interface EasyHuntingTimeConditionsSettings {
/** Status of time conditions */
enable: boolean;
/** Number associated to the first slot action */
slot1Number?: PhoneNumber;
/** Action type executed when the first slot is used */
slot1Type?: TimeConditionsSettingsForwardTypeEnum;
/** Number associated to the second slot action */
slot2Number?: PhoneNumber;
/** Action type executed when the second slot is used */
slot2Type?: TimeConditionsSettingsForwardTypeEnum;
/** Number associated to the third slot action */
slot3Number?: PhoneNumber;
/** Action type executed when the third slot is used */
slot3Type?: TimeConditionsSettingsForwardTypeEnum;
/** Number associated to the unavailable slot action */
unavailableNumber?: PhoneNumber;
/** Action type executed when the unavailable slot is used */
unavailableType?: TimeConditionsSettingsForwardTypeEnum;
}
//# sourceMappingURL=EasyHuntingTimeConditionsSettings.d.ts.map