/**
 * Interface defining the property object that describes the customer product summary.
 *
 * @see [CustomerProductSummary](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
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;
}
