ix-entities
Version:
IX entities in typescript format. This includes: - Customer
23 lines (22 loc) • 560 B
TypeScript
/**
* Interface defining the property object that describes the customer product summary.
*
* @see [CustomerProductSummary](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @BoomtownApi
*/
export interface CustomerProductSummary {
id?: string;
parentId: string;
type: string;
critical: boolean;
active: boolean;
make?: string;
model?: string;
lastChecked?: string;
lastSeen?: string;
lastChanged?: string;
pciCompliant?: string;
policy?: string;
status?: string;
}