Class: ClickClient::FX::GuaranteeMoney

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) ⇒ GuaranteeMoney

コンストラクタ

item

結果要素



956
957
958
959
960
# File 'lib/clickclient/fx.rb', line 956

def initialize( item )
   super(item)
   @currency_pair_code = item.attributes["tsukaPairCode"].to_i
   @guarantee_money = item.text( "./torihikiShokokin" ).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

通貨ペアコード



962
963
964
# File 'lib/clickclient/fx.rb', line 962

def currency_pair_code
  @currency_pair_code
end

#guarantee_moneyObject

証拠金



964
965
966
# File 'lib/clickclient/fx.rb', line 964

def guarantee_money
  @guarantee_money
end