/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetManagingPartnerResponse } from './getManagingPartnerResponse'; import { GetPhoneNumberResponse } from './getPhoneNumberResponse'; import { GetRegisterInformationAddressResponse } from './getRegisterInformationAddressResponse'; /** Response object for getting an RegisterInformationResponse */ export interface GetRegisterInformationResponse { email?: string | null; document?: string | null; type?: string | null; siteUrl?: string | null; phoneNumbers?: GetPhoneNumberResponse[] | null; name?: string | null; motherName?: string | null; birthdate?: string | null; monthlyIncome?: string | null; professionalOccupation?: string | null; address?: GetRegisterInformationAddressResponse | null; companyName?: string | null; tradingName?: string | null; annualRevenue?: string | null; corporationType?: string | null; foundingDate?: string | null; cnae?: string | null; mainAddress?: GetRegisterInformationAddressResponse | null; managingPartners?: GetManagingPartnerResponse[] | null; } export declare const getRegisterInformationResponseSchema: Schema;