Type alias HighSystemsResponseGetNotifications
HighSystemsResponseGetNotifications: { 
    results: { 
        active: boolean; 
        attachments?: any; 
        bcc?: string[]; 
        body?: string; 
        cc?: string[]; 
        condition: string; 
        description?: string; 
        from: string; 
        html?: string; 
        id: string; 
        name: string; 
        relatedOwner: string; 
        relatedTable: string; 
        subject: string; 
        to: string[]; 
        triggeringFields?: string[]; 
        type?: string[]; 
    }[]; 
    success: boolean; 
}
Type declaration
- results: { 
 active: boolean;
 attachments?: any;
 bcc?: string[];
 body?: string;
 cc?: string[];
 condition: string;
 description?: string;
 from: string;
 html?: string;
 id: string;
 name: string;
 relatedOwner: string;
 relatedTable: string;
 subject: string;
 to: string[];
 triggeringFields?: string[];
 type?: string[];
 }[]
- success: boolean