/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Card token data */ export interface GetCardTokenResponse { lastFourDigits?: string | null; holderName?: string | null; holderDocument?: string | null; expMonth?: number | null; expYear?: number | null; brand?: string | null; type?: string | null; label?: string | null; } export declare const getCardTokenResponseSchema: Schema;