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