/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetCardTokenResponse } from './getCardTokenResponse'; /** Token data */ export interface GetTokenResponse { id?: string | null; type?: string | null; createdAt?: string | null; expiresAt?: string | null; card?: GetCardTokenResponse | null; } export declare const getTokenResponseSchema: Schema;