Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type Aliases

InvoicePaymentInstrument: "Invoice" | "Invoice-PayExFinancingNo" | "Invoice-PayExFinancingSe" | "Invoice-PayMonthlyInvoiceSe"
MaybePopulated<T>: { id: string } & ({ readonly [ key in keyof T]?: never } | { readonly [ key in keyof T]: T[key] })

Type Parameters

  • T

Mutable<T>: { -readonly [ P in keyof T]: T[P] }

Type Parameters

  • T

OrderItemType: "PRODUCT" | "SERVICE" | "SHIPPING_FEE" | "PAYMENT_FEE" | "DISCOUNT" | "VALUE_CODE" | "OTHER"
PaymentInstrument: "CreditCard" | "Vipps" | "Swish" | "Trustly" | "CreditAccount" | "MobilePay" | InvoicePaymentInstrument
PaymentOrderOperation: "Purchase" | "Recur" | "Abort" | "Verify"
RecursiveMutable<T>: { -readonly [ P in keyof T]: T[P] extends object ? RecursiveMutable<T[P]> : T[P] }

Type Parameters

  • T

RecursivePartial<T>: T extends (infer Q)[] ? RecursivePartial<Q>[] : T extends object ? { [ key in keyof T]?: RecursivePartial<T[key]> } : T

Type Parameters

  • T

Generated using TypeDoc