@theredspace/spp-client
    Preparing search index...

    Interface Item

    A purchasable good or service category used on receipts and slips. Supports Add, Read, Modify, Delete.

    interface Item {
        code?: string;
        cost?: number;
        cost_centerid?: string;
        cost_is_fixed?: "0" | "1";
        created: string;
        currency?: string;
        externalid?: string;
        id: string;
        name: string;
        picklist_label?: string;
        taxable?: "0" | "1";
        tp_comp?: "ge" | "gt";
        tp_cost?: number;
        tp_notes_required?: "0" | "1";
        tp_unit_or_total?: "U" | "T";
        type?: "R" | "M";
        unitm?: string;
        updated: string;
    }
    Index

    Properties

    code?: string
    cost?: number
    cost_centerid?: string
    cost_is_fixed?: "0" | "1"
    created: string
    currency?: string
    externalid?: string
    id: string
    name: string
    picklist_label?: string
    taxable?: "0" | "1"
    tp_comp?: "ge" | "gt"
    tp_cost?: number
    tp_notes_required?: "0" | "1"
    tp_unit_or_total?: "U" | "T"
    type?: "R" | "M"
    unitm?: string
    updated: string