export type FinancialStatus = (
    "authorized" |
    "pending" |
    "paid" |
    "partially_paid" |
    "refunded" |
    "voided" |
    "partially_refunded" |
    "unpaid" |
    "any" |
    string
);