/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetPhoneNumberResponse } from './getPhoneNumberResponse'; import { GetRegisterInformationAddressResponse } from './getRegisterInformationAddressResponse'; /** Response object for getting an ManagingPartnerResponse */ export interface GetManagingPartnerResponse { name?: string | null; email?: string | null; document?: string | null; type?: string | null; motherName?: string | null; birthdate?: string | null; monthlyIncome?: string | null; professionalOccupation?: string | null; selfDeclaredRepresentative?: boolean; address?: GetRegisterInformationAddressResponse | null; phoneNumbers?: GetPhoneNumberResponse[] | null; } export declare const getManagingPartnerResponseSchema: Schema;