/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetAutomaticAnticipationResponse } from './getAutomaticAnticipationResponse'; import { GetBankAccountResponse } from './getBankAccountResponse'; import { GetGatewayRecipientResponse } from './getGatewayRecipientResponse'; import { GetRegisterInformationResponse } from './getRegisterInformationResponse'; import { GetTransferSettingsResponse } from './getTransferSettingsResponse'; /** Recipient response */ export interface GetRecipientResponse { /** Id */ id?: string | null; /** Name */ name?: string | null; /** Email */ email?: string | null; /** Document */ document?: string | null; /** Description */ description?: string | null; /** Type */ type?: string | null; /** Status */ status?: string | null; /** Creation date */ createdAt?: string | null; /** Last update date */ updatedAt?: string | null; /** Deletion date */ deletedAt?: string | null; /** Default bank account */ defaultBankAccount?: GetBankAccountResponse | null; /** Info about the recipient on the gateway */ gatewayRecipients?: GetGatewayRecipientResponse[] | null; /** Metadata */ metadata?: Record | null; automaticAnticipationSettings?: GetAutomaticAnticipationResponse | null; transferSettings?: GetTransferSettingsResponse | null; /** Recipient code */ code?: string | null; /** Payment mode */ paymentMode?: string | null; registerInformation?: GetRegisterInformationResponse | null; } export declare const getRecipientResponseSchema: Schema;