Type : transactions.sales_tax_type

Schema transactions
Type Name sales_tax_type
Base Type -
Owner postgres
Collation
Default
Type Composite Type
Store Type Compressed Inline/Seconary
Not Null False
Description
Type Definition:
CREATE TYPE transactions.sales_tax_type AS
(
    id integer,
    sales_tax_detail_id integer,
    sales_tax_id integer,
    sales_tax_detail_code text,
    sales_tax_detail_name text,
    is_use_tax boolean,
    account_id integer,
    price money_strict,
    quantity integer_strict,
    discount money_strict2,
    shipping_charge money_strict2,
    taxable_amount money_strict2,
    state_sales_tax_id integer,
    county_sales_tax_id integer,
    rate decimal_strict2,
    base_amount_type text,
    rate_type text,
    rounding_type text,
    rounding_places integer,
    tax money_strict2
);