Class: Gnip::Url
Constant Summary
Constants inherited from Message
Message::SYSTEM_MESSAGE_TYPES, Message::TWITTER_COMPLIANCE_MESSAGES
Instance Attribute Summary collapse
-
#display_url ⇒ Object
readonly
Returns the value of attribute display_url.
-
#expanded_status ⇒ Object
readonly
Returns the value of attribute expanded_status.
-
#expanded_url ⇒ Object
readonly
Returns the value of attribute expanded_url.
-
#expanded_url_description ⇒ Object
readonly
Returns the value of attribute expanded_url_description.
-
#expanded_url_title ⇒ Object
readonly
Returns the value of attribute expanded_url_title.
-
#indices ⇒ Object
readonly
Returns the value of attribute indices.
-
#raw ⇒ Object
readonly
Returns the value of attribute raw.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ Url
constructor
A new instance of Url.
- #to_h ⇒ Object
- #to_json ⇒ Object
Methods inherited from Message
#activity?, build, #error?, #generate_json, #info?, #system_message?, #warn?
Constructor Details
permalink #initialize(params = {}) ⇒ Url
Returns a new instance of Url.
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/gnip_api/gnip/url.rb', line 5 def initialize params={} @raw = params @url = params['url'] @display_url = params['display_url'] @expanded_url = params['expanded_url'] @expanded_status = params['expanded_status'] @expanded_url_title = params['expanded_url_title'] @expanded_url_description = params['expanded_url_description'] @indices = params['indices'] end |
Instance Attribute Details
permalink #display_url ⇒ Object (readonly)
Returns the value of attribute display_url.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def display_url @display_url end |
permalink #expanded_status ⇒ Object (readonly)
Returns the value of attribute expanded_status.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def @expanded_status end |
permalink #expanded_url ⇒ Object (readonly)
Returns the value of attribute expanded_url.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def @expanded_url end |
permalink #expanded_url_description ⇒ Object (readonly)
Returns the value of attribute expanded_url_description.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def @expanded_url_description end |
permalink #expanded_url_title ⇒ Object (readonly)
Returns the value of attribute expanded_url_title.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def @expanded_url_title end |
permalink #indices ⇒ Object (readonly)
Returns the value of attribute indices.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def indices @indices end |
permalink #raw ⇒ Object (readonly)
Returns the value of attribute raw.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def raw @raw end |
permalink #url ⇒ Object (readonly)
Returns the value of attribute url.
3 4 5 |
# File 'lib/gnip_api/gnip/url.rb', line 3 def url @url end |
Instance Method Details
permalink #to_h ⇒ Object
[View source]
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/gnip_api/gnip/url.rb', line 16 def to_h { :url => @url, :display_url => @display_url, :expanded_url => @expanded_url, :expanded_status => @expanded_status, :expanded_url_title => @expanded_url_title, :expanded_url_description => @expanded_url_description, :indices => @indices }.delete_if{|k,v| v.nil?} end |
permalink #to_json ⇒ Object
[View source]
28 29 30 |
# File 'lib/gnip_api/gnip/url.rb', line 28 def to_json @raw.to_json end |