Response_2 Interface

Packages > @anticrm/rpc > Response_2

Response object define a server response on transaction request.

Also used to inform other clients about operations being performed by server.

Signature:

export interface Response<R> 

Properties

List of properties of this interface
Property Type Description
clientTx Tx[]
error RpcError
id ReqId
result R

Events

clientTx

Signature:

clientTx?: Tx[];

error

Signature:

error?: RpcError;

id

Signature:

id?: ReqId;

result

Signature:

result?: R;