Class: Counterparty::OrderExpiration
- Inherits:
-
CounterResource
- Object
- CounterResource
- Counterparty::OrderExpiration
- Defined in:
- lib/counterparty/resources.rb
Overview
An object that describes the expiration of an order created by the source address.
Instance Attribute Summary collapse
-
#block_index ⇒ Object
(integer): The block index (block number in the block chain) when this expiration occurred.
-
#order_hash ⇒ Object
(string): The transaction hash of the order expiriing.
-
#order_index ⇒ Object
(integer): The transaction index of the order expiring.
-
#source ⇒ Object
(string): The source address that created the order.
Attributes inherited from CounterResource
#allow_unconfirmed_inputs, #encoding, #fee, #fee_per_kb, #pubkey, #result_attributes
Method Summary
Methods inherited from CounterResource
#==, api_name, find, #initialize, #save!, to_create_request, to_do_request, to_get_request, #to_raw_tx, #to_signed_tx
Constructor Details
This class inherits a constructor from Counterparty::CounterResource
Instance Attribute Details
#block_index ⇒ Object
(integer): The block index (block number in the block chain) when this expiration occurred
634 635 636 |
# File 'lib/counterparty/resources.rb', line 634 def block_index @block_index end |
#order_hash ⇒ Object
(string): The transaction hash of the order expiriing
630 631 632 |
# File 'lib/counterparty/resources.rb', line 630 def order_hash @order_hash end |
#order_index ⇒ Object
(integer): The transaction index of the order expiring
627 628 629 |
# File 'lib/counterparty/resources.rb', line 627 def order_index @order_index end |
#source ⇒ Object
(string): The source address that created the order
637 638 639 |
# File 'lib/counterparty/resources.rb', line 637 def source @source end |