/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetMovementObjectBaseResponse } from './getMovementObjectBaseResponse'; /** Generic response object for getting a MovementObjectSettlement. */ export interface GetMovementObjectSettlementResponse extends GetMovementObjectBaseResponse { product?: string | null; brand?: string | null; paymentDate?: string | null; recipientId?: string | null; documentType?: string | null; document?: string | null; contractObligationId?: string | null; liquidationArrangementId?: string | null; externalEnginePaymentId?: string | null; } export declare const getMovementObjectSettlementResponseSchema: Schema;