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

    Interface TaxLocation

    A TaxLocation defines regional tax-rate accounting codes and rates. Supports Add, Read, Modify, Upsert.

    interface TaxLocation {
        acct_code_federal?: string;
        acct_code_gst?: string;
        acct_code_hst?: string;
        acct_code_pst?: string;
        acct_code_state?: string;
        active: "0" | "1";
        created: string;
        federal_rate?: number;
        gst_rate?: number;
        hst_rate?: number;
        id: string;
        name: string;
        notes?: string;
        pst_rate?: number;
        state_rate?: number;
        tax_method?: "F" | "G" | "H";
        updated: string;
    }
    Index

    Properties

    acct_code_federal?: string
    acct_code_gst?: string
    acct_code_hst?: string
    acct_code_pst?: string
    acct_code_state?: string
    active: "0" | "1"
    created: string
    federal_rate?: number
    gst_rate?: number
    hst_rate?: number
    id: string
    name: string
    notes?: string
    pst_rate?: number
    state_rate?: number
    tax_method?: "F" | "G" | "H"
    updated: string