/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetAddressResponse } from './getAddressResponse'; import { GetPhonesResponse } from './getPhonesResponse'; /** Response object for getting a customer */ export interface GetCustomerResponse { id?: string | null; name?: string | null; email?: string | null; delinquent?: boolean | null; createdAt?: string | null; updatedAt?: string | null; document?: string | null; type?: string | null; fbAccessToken?: string | null; address?: GetAddressResponse | null; metadata?: Record | null; phones?: GetPhonesResponse | null; fbId?: bigint | null; /** Código de referência do cliente no sistema da loja. Max: 52 caracteres */ code?: string | null; documentType?: string | null; } export declare const getCustomerResponseSchema: Schema;