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

    Interface TaxRate

    A TaxRate is the tax applied on a transaction by location and date. Supports Add, Read, Modify, Upsert.

    interface TaxRate {
        adjusted?: "0" | "1";
        created: string;
        currency?: string;
        date: string;
        federal: number;
        gst?: number;
        hst?: number;
        id: string;
        manual?: "0" | "1";
        notes?: string;
        pst?: number;
        purchase_itemid?: string;
        slipid?: string;
        state?: number;
        tax_locationid: string;
        ticketid?: string;
        updated: string;
    }
    Index

    Properties

    adjusted?: "0" | "1"
    created: string
    currency?: string
    date: string
    federal: number
    gst?: number
    hst?: number
    id: string
    manual?: "0" | "1"
    notes?: string
    pst?: number
    purchase_itemid?: string
    slipid?: string
    state?: number
    tax_locationid: string
    ticketid?: string
    updated: string