Class: ClickClient::FX::Message
Overview
お知らせ
定義済みの属性の他に、レスポンスXMLの要素名、属性名でも値にアクセスできます。 レスポンスXMLについては、ClickClientインターネット証券提供のドキュメントを参照ください。
Instance Attribute Summary collapse
-
#text ⇒ Object
本文.
-
#title ⇒ Object
タイトル.
Instance Method Summary collapse
-
#initialize(item) ⇒ Message
constructor
コンストラクタ.
Methods inherited from Base
#eql?, #hash, #method_missing, #to_s
Constructor Details
#initialize(item) ⇒ Message
コンストラクタ
- item
-
結果要素
980 981 982 983 984 |
# File 'lib/clickclient/fx.rb', line 980 def initialize( item ) super(item) @title = item.text( "./title" ) @text = item.text( "./text" ) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ClickClient::Base
Instance Attribute Details
#text ⇒ Object
本文
988 989 990 |
# File 'lib/clickclient/fx.rb', line 988 def text @text end |
#title ⇒ Object
タイトル
986 987 988 |
# File 'lib/clickclient/fx.rb', line 986 def title @title end |