UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

24 lines 775 B
import { IconData } from './IconData'; import { CreditCardStateEnum } from './CreditCardStateEnum'; /** Credit card information */ export interface CreditCard { /** This credit card is the default payment mean? */ defaultPaymentMean: boolean; /** Custom description of this credit card */ description?: string; /** */ expirationDate: string; /** Payment method type icon */ icon?: IconData; /** */ id: number; /** Credit card BIN */ number: string; /** Credit card state */ state: CreditCardStateEnum; /** True if this credit card has been registered with a successful 3DSecure challenge */ threeDsValidated: boolean; /** Kind of credit card */ type: string; } //# sourceMappingURL=CreditCard.d.ts.map