The accounting basis used by the company for financial reports.
import com.apideck.unify.models.components.AccountingMethod;
AccountingMethod value = AccountingMethod.CASH;
// Open enum: use .of() to create instances from custom string values
AccountingMethod custom = AccountingMethod.of("custom_value");| Name | Value |
|---|---|
CASH |
cash |
ACCRUAL |
accrual |