This type shows the structure of a CreditCard
export type CreditCard = Partial<CreateCardPayload> & Pick<CreateCardPayload, 'card_cvv'> & { installments?: number;};
Generated using TypeDoc
This type shows the structure of a CreditCard