import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface PlacementProperties { PlacementName?: Value; ProjectName: Value; AssociatedDevices?: { [key: string]: any; }; Attributes?: { [key: string]: any; }; } export default class Placement extends ResourceBase { constructor(properties: PlacementProperties); }