import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export interface ThreatIntelSetProperties { Format: Value; Activate: Value; DetectorId: Value; Tags?: List; Name?: Value; Location: Value; } export default class ThreatIntelSet extends ResourceBase { constructor(properties: ThreatIntelSetProperties); }