/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreateAddressRequest } from './createAddressRequest'; import { CreatePhoneRequest } from './createPhoneRequest'; /** SubMerchant */ export interface CreateSubMerchantRequest { /** Payment Facilitator Code */ paymentFacilitatorCode: string; /** Code */ code: string; /** Name */ name: string; /** Merchant Category Code */ merchantCategoryCode: string; /** Document number. Only numbers, no special characters. */ document: string; /** Document type. Can be either 'individual' or 'company' */ type: string; /** Phone */ phone: CreatePhoneRequest; /** Address */ address: CreateAddressRequest; /** Legal name */ legalName: string; } export declare const createSubMerchantRequestSchema: Schema;