Module: DigiwinDsp::Enums::TaxType

Defined in:
lib/digiwin_dsp/enums.rb

Overview

request_detail.tax_type — taxable vs tax-free. Enum is documented only on the order endpoint (DSPOOFFICIAL001:230); the same field on the return (005) and invoice (004) endpoints is described as “課稅別” with no enum listed, but is assumed to share these values. Field maxLength is 10 per spec.

Constant Summary collapse

TAXABLE =

應稅

"1"
TAX_FREE =

免稅

"2"
ALL =
[TAXABLE, TAX_FREE].freeze