import * as z from "zod/v3"; export type GetTransactionSettlementGlobals = { merchantAccountId?: string | undefined; }; export type GetTransactionSettlementRequest = { /** * The unique identifier of the transaction. */ transactionId: string; /** * The unique identifier of the settlement. */ settlementId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetTransactionSettlementRequest$Outbound = { transaction_id: string; settlement_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetTransactionSettlementRequest$outboundSchema: z.ZodType; export declare function getTransactionSettlementRequestToJSON(getTransactionSettlementRequest: GetTransactionSettlementRequest): string; //# sourceMappingURL=gettransactionsettlement.d.ts.map