Class: ClickClient::FX::Message

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

Overview

お知らせ

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#textObject

本文



988
989
990
# File 'lib/clickclient/fx.rb', line 988

def text
  @text
end

#titleObject

タイトル



986
987
988
# File 'lib/clickclient/fx.rb', line 986

def title
  @title
end