import { IFndyObject } from './fndy-object.model'; export interface IFndyGlobalActionModel extends IFndyObject { 'a.action_type': 'MQTT Publish' | 'HTTP Post' | 'HTTP Get' | 'HTTP Put' | 'HTTP Delete' | 'Lambda Function' | 'Send to Analytics'; 'a.cron': number; 'a.mqtt_publish_topic'?: string; 'a.http_headers'?: any; 'a.http_url'?: string; 'a.name': string; 'a.payload': string; 'a.selected_device': string; 'a.status'?: 'active'; 'a.type'?: 'Scheduled'; 'a.token'?: any; }