/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetRecipientResponse } from './getRecipientResponse'; /** Anticipation */ export interface GetAnticipationResponse { /** Id */ id?: string | null; /** Requested amount */ requestedAmount?: number | null; /** Approved amount */ approvedAmount?: number | null; /** Recipient */ recipient?: GetRecipientResponse | null; /** Anticipation id on the gateway */ pgid?: string | null; /** Creation date */ createdAt?: string | null; /** Last update date */ updatedAt?: string | null; /** Payment date */ paymentDate?: string | null; /** Status */ status?: string | null; /** Timeframe */ timeframe?: string | null; } export declare const getAnticipationResponseSchema: Schema;