Type Aliases
InvoicePaymentInstrument
InvoicePaymentInstrument: "Invoice" | "Invoice-PayExFinancingNo" | "Invoice-PayExFinancingSe" | "Invoice-PayMonthlyInvoiceSe"
MaybePopulated
MaybePopulated<T>: { id: string } & ({ readonly [ key in keyof T]?: never } | { readonly [ key in keyof T]: T[key] })
Type Parameters
Mutable
Mutable<T>: { -readonly [ P in keyof T]: T[P] }
Type Parameters
OrderItemType
OrderItemType: "PRODUCT" | "SERVICE" | "SHIPPING_FEE" | "PAYMENT_FEE" | "DISCOUNT" | "VALUE_CODE" | "OTHER"
PaymentInstrument
Payment
Instrument
: "CreditCard" | "Vipps" | "Swish" | "Trustly" | "CreditAccount" | "MobilePay" | InvoicePaymentInstrumentPaymentOrderOperation
PaymentOrderOperation: "Purchase" | "Recur" | "Abort" | "Verify"
RecursiveMutable
Recursive
Mutable
<T>: { -readonly [ P in keyof T]: T[P] extends object ? RecursiveMutable<T[P]> : T[P] }Type Parameters
RecursivePartial
Type Parameters