/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateAddressRequest } from './createAddressRequest'; import { CreateCardOptionsRequest } from './createCardOptionsRequest'; /** Card data */ export interface CreateCardRequest { /** Credit card number */ number?: string; /** Holder name, as written on the card */ holderName?: string; /** The expiration month */ expMonth?: number; /** The expiration year, that can be informed with 2 or 4 digits */ expYear?: number; /** The card's security code */ cvv?: string; /** Card's billing address */ billingAddress?: CreateAddressRequest; /** Card brand */ brand?: string; /** The address id for the billing address */ billingAddressId?: string; /** Metadata */ metadata?: Record; /** Card type */ type?: string; /** Options for creating the card */ options?: CreateCardOptionsRequest; /** Document number for the card's holder */ holderDocument?: string; /** Indicates whether it is a private label card */ privateLabel?: boolean; label?: string; /** Identifier */ id?: string; /** token identifier */ token?: string; } export declare const createCardRequestSchema: Schema;