Class: Gnip::Url

Inherits:
Message show all
Defined in:
lib/gnip_api/gnip/url.rb

Constant Summary

Constants inherited from Message

Message::SYSTEM_MESSAGE_TYPES, Message::TWITTER_COMPLIANCE_MESSAGES

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Message

#activity?, build, #error?, #generate_json, #info?, #system_message?, #warn?

Constructor Details

#initialize(params = {}) ⇒ Url

Returns a new instance of Url.

[View source]

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

#display_urlObject (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

#expanded_statusObject (readonly)

Returns the value of attribute expanded_status.


3
4
5
# File 'lib/gnip_api/gnip/url.rb', line 3

def expanded_status
  @expanded_status
end

#expanded_urlObject (readonly)

Returns the value of attribute expanded_url.


3
4
5
# File 'lib/gnip_api/gnip/url.rb', line 3

def expanded_url
  @expanded_url
end

#expanded_url_descriptionObject (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
  @expanded_url_description
end

#expanded_url_titleObject (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
  @expanded_url_title
end

#indicesObject (readonly)

Returns the value of attribute indices.


3
4
5
# File 'lib/gnip_api/gnip/url.rb', line 3

def indices
  @indices
end

#rawObject (readonly)

Returns the value of attribute raw.


3
4
5
# File 'lib/gnip_api/gnip/url.rb', line 3

def raw
  @raw
end

#urlObject (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

#to_hObject

[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

#to_jsonObject

[View source]

28
29
30
# File 'lib/gnip_api/gnip/url.rb', line 28

def to_json
  @raw.to_json
end