GitHub

OrderFinancialStatus

import { OrderFinancialStatus } from '@daffodil/driver/shopify'

Represents the order's current financial status.

enum OrderFinancialStatus {
  Authorized = OrderFinancialStatus.Authorized,
  Paid = OrderFinancialStatus.Paid,
  PartiallyPaid = OrderFinancialStatus.PartiallyPaid,
  PartiallyRefunded = OrderFinancialStatus.PartiallyRefunded,
  Pending = OrderFinancialStatus.Pending,
  Refunded = OrderFinancialStatus.Refunded,
  Voided = OrderFinancialStatus.Voided,
}

Properties

Authorized
OrderFinancialStatus.Authorized

Displayed as Authorized.

Paid
OrderFinancialStatus.Paid

Displayed as Paid.

PartiallyPaid
OrderFinancialStatus.PartiallyPaid

Displayed as Partially paid.

PartiallyRefunded
OrderFinancialStatus.PartiallyRefunded

Displayed as Partially refunded.

Pending
OrderFinancialStatus.Pending

Displayed as Pending.

Refunded
OrderFinancialStatus.Refunded

Displayed as Refunded.

Voided
OrderFinancialStatus.Voided

Displayed as Voided.