/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetSplitResponse } from './getSplitResponse'; export interface GetSubscriptionSplitResponse { /** Defines if the split is enabled */ enabled?: boolean | null; /** Split */ rules?: GetSplitResponse[] | null; } export declare const getSubscriptionSplitResponseSchema: Schema;