Class PendingParams
Pending (Scheduled) Transaction Parameters. Used for creating a Signatory signaling that the transaction should be accepted but not immediately executed. It includes optional details descrbing the details of how the transaction is to be scheduled for execution.
Implements
Inherited Members
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class PendingParams : IEquatable<PendingParams>
Properties
| Improve this Doc View SourceAdministrator
An optional endorsement that can be used to cancel or delete the scheduling of the pending transaction if it has not already been executed or expired and removed by the network. If left
null
, the scheduling of the pending transaction is
immutable. It will only be removed by the network by execution or expiration.
Declaration
public Endorsement Administrator { get; set; }
Property Value
Type | Description |
---|---|
Endorsement |
Memo
Short memo/description that will be attached to network record holding the pending transaction (not the memo of pending transaction itself), limited to 100 bytes.
Declaration
public string Memo { get; set; }
Property Value
Type | Description |
---|---|
String |
PendingPayer
Optional address of the operator account that explicitly pays for the execution of the pending transaction when it executes. If not specified (left null), the payer of the transaction scheduling this pending transaction will pay for the pending transaction. (Which is the current account identified as the payer in the Context).
Declaration
public Address PendingPayer { get; set; }
Property Value
Type | Description |
---|---|
Address |