import * as factory from '../../factory'; import { Service } from '../../service'; /** * 通貨転送取引サービス */ export declare class MoneyTransferAssetTransactionService extends Service { /** * 取引開始 */ start(params: factory.assetTransaction.moneyTransfer.IStartParamsBeforeStart): Promise; /** * 取引確定 */ confirm(params: { id?: string; transactionNumber?: string; }): Promise; /** * 取引中止 */ cancel(params: { id?: string; transactionNumber?: string; }): Promise; /** * ペイメントカード入金 * @deprecated */ startAndConfirmDeposit(params: { object?: { /** * 金額 */ amount?: number; /** * 入金先 */ toLocation?: { accountNumber?: string; }; /** * 取引説明 */ description?: string; }; /** * 入金受取人情報 */ recipient: { id: string; name: string; }; }): Promise; }