/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetRecipientResponse } from './getRecipientResponse'; import { GetSplitOptionsResponse } from './getSplitOptionsResponse'; /** Split response */ export interface GetSplitResponse { /** Type */ type?: string | null; /** Amount */ amount?: number | null; /** Recipient */ recipient?: GetRecipientResponse | null; /** The split rule gateway id */ gatewayId?: string | null; options?: GetSplitOptionsResponse | null; id?: string | null; } export declare const getSplitResponseSchema: Schema;