import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface ThingPrincipalAttachmentProperties { Principal: Value; ThingName: Value; } export default class ThingPrincipalAttachment extends ResourceBase { constructor(properties: ThingPrincipalAttachmentProperties); }