Class: EverSdk::Processing::ParamsOfWaitForTransaction
- Inherits:
-
Object
- Object
- EverSdk::Processing::ParamsOfWaitForTransaction
- Defined in:
- lib/ever_sdk_client/processing.rb
Instance Attribute Summary collapse
-
#abi ⇒ Object
readonly
Returns the value of attribute abi.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#send_events ⇒ Object
readonly
Returns the value of attribute send_events.
-
#shard_block_id ⇒ Object
readonly
Returns the value of attribute shard_block_id.
Instance Method Summary collapse
-
#initialize(abi: nil, message:, shard_block_id:, send_events:) ⇒ ParamsOfWaitForTransaction
constructor
A new instance of ParamsOfWaitForTransaction.
- #to_h ⇒ Object
Constructor Details
#initialize(abi: nil, message:, shard_block_id:, send_events:) ⇒ ParamsOfWaitForTransaction
Returns a new instance of ParamsOfWaitForTransaction.
49 50 51 52 53 54 |
# File 'lib/ever_sdk_client/processing.rb', line 49 def initialize(abi: nil, message:, shard_block_id:, send_events:) @abi = abi @message = @shard_block_id = shard_block_id @send_events = send_events end |
Instance Attribute Details
#abi ⇒ Object (readonly)
Returns the value of attribute abi.
47 48 49 |
# File 'lib/ever_sdk_client/processing.rb', line 47 def abi @abi end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
47 48 49 |
# File 'lib/ever_sdk_client/processing.rb', line 47 def @message end |
#send_events ⇒ Object (readonly)
Returns the value of attribute send_events.
47 48 49 |
# File 'lib/ever_sdk_client/processing.rb', line 47 def send_events @send_events end |
#shard_block_id ⇒ Object (readonly)
Returns the value of attribute shard_block_id.
47 48 49 |
# File 'lib/ever_sdk_client/processing.rb', line 47 def shard_block_id @shard_block_id end |
Instance Method Details
#to_h ⇒ Object
56 57 58 59 60 61 62 63 |
# File 'lib/ever_sdk_client/processing.rb', line 56 def to_h { abi: abi&.to_h, message: , shard_block_id: shard_block_id, send_events: send_events } end |