UNPKG

@fairmint/canton-node-sdk

Version:
19 lines 682 B
/** * Get the status of a transfer offer by tracking ID * * @example * ```typescript * const status = await client.getTransferOfferStatus({ trackingId: 'unique-tracking-id' }); * * ```; */ export declare const GetTransferOfferStatus: new (client: import("../../../../../../core").BaseClient) => import("../../../../../../core").ApiOperation<{ trackingId: string; }, { status: "created" | "failed" | "accepted" | "completed"; transaction_id?: string | undefined; contract_id?: string | undefined; failure_kind?: "expired" | "withdrawn" | "rejected" | undefined; withdrawn_reason?: string | undefined; }>; //# sourceMappingURL=get-status.d.ts.map