Types > OIPaymentDetail
Commerce APITypesOIPaymentDetail
OIPaymentDetail

Description

Fields

card: OIPaymentDetailCard


client: OIPaymentDetailClient


failed_attempts: Int!


payment_method_id: String


type: PaymentDetailType!

Type of the payment detail


Used By

Types

OIOrder

Preview (typescript)

interface OIPaymentDetail {
card?: OIPaymentDetailCard | null
client?: OIPaymentDetailClient | null
failed_attempts: number
payment_method_id?: string
type: PaymentDetailType
}