Class: ClickClient::FX::ExecutionResult

Inherits:
Base
  • Object
show all
Defined in:
lib/clickclient/fx.rb

Overview

約定

定義済みの属性の他に、レスポンスXMLの要素名、属性名でも値にアクセスできます。 レスポンスXMLについては、クリック証券提供のドキュメントを参照ください。

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#eql?, #hash, #method_missing, #to_s

Constructor Details

#initialize(item) ⇒ ExecutionResult

コンストラクタ

item

結果要素



865
866
867
868
# File 'lib/clickclient/fx.rb', line 865

def initialize( item )
   super(item)
   @currency_pair_code = item.get_elements("./tsukaPair")[0].attributes["tsukaPairCode"].to_i
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ClickClient::Base

Instance Attribute Details

#currency_pair_codeObject

通貨ペアコード



870
871
872
# File 'lib/clickclient/fx.rb', line 870

def currency_pair_code
  @currency_pair_code
end