@fairmint/canton-node-sdk
Version:
Canton Node SDK
19 lines • 682 B
TypeScript
/**
* 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