OrderFinancialStatus
Represents the order's current financial status.
import { OrderFinancialStatus } from '@daffodil/driver/shopify'
enum OrderFinancialStatus {
Authorized = 'AUTHORIZED',
Paid = 'PAID',
PartiallyPaid = 'PARTIALLY_PAID',
PartiallyRefunded = 'PARTIALLY_REFUNDED',
Pending = 'PENDING',
Refunded = 'REFUNDED',
Voided = 'VOIDED',
}