/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetCustomerResponse } from './getCustomerResponse'; /** Response object for getting a access token */ export interface GetAccessTokenResponse { id?: string | null; code?: string | null; status?: string | null; createdAt?: string | null; customer?: GetCustomerResponse | null; } export declare const getAccessTokenResponseSchema: Schema;