/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateAddressRequest } from './createAddressRequest'; import { CreatePhonesRequest } from './createPhonesRequest'; /** Request for updating a customer */ export interface UpdateCustomerRequest { /** Name */ name?: string; /** Email */ email?: string; /** Document number */ document?: string; /** Person type */ type?: string; /** Address */ address?: CreateAddressRequest; /** Metadata */ metadata?: Record; phones?: CreatePhonesRequest; /** Código de referência do cliente no sistema da loja. Max: 52 caracteres */ code?: string; /** Gênero do cliente */ gender?: string; documentType?: string; } export declare const updateCustomerRequestSchema: Schema;