Class: Gnip::TwitterComplianceMessage

Inherits:
Message
  • Object
show all
Defined in:
lib/gnip_api/gnip/twitter_compliance_message.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 = {}) ⇒ TwitterComplianceMessage

Returns a new instance of TwitterComplianceMessage.

[View source]

5
6
7
8
9
10
11
12
# File 'lib/gnip_api/gnip/twitter_compliance_message.rb', line 5

def initialize params = {}
  @raw = params
  @object_type = params['objectType']
  @actor = params['actor']
  @verb = params['verb']
  @timestamp_ms = params['timestampMs']
  @object = params['object']
end

Instance Attribute Details

#actorObject (readonly)

Returns the value of attribute actor.


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

def actor
  @actor
end

#objectObject (readonly)

Returns the value of attribute object.


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

def object
  @object
end

#object_typeObject (readonly)

Returns the value of attribute object_type.


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

def object_type
  @object_type
end

#rawObject (readonly)

Returns the value of attribute raw.


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

def raw
  @raw
end

#targetObject (readonly)

Returns the value of attribute target.


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

def target
  @target
end

#timestamp_msObject (readonly)

Returns the value of attribute timestamp_ms.


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

def timestamp_ms
  @timestamp_ms
end

#verbObject (readonly)

Returns the value of attribute verb.


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

def verb
  @verb
end

#withheld_in_countriesObject (readonly)

Returns the value of attribute withheld_in_countries.


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

def withheld_in_countries
  @withheld_in_countries
end

Instance Method Details

#to_hObject

[View source]

14
15
16
# File 'lib/gnip_api/gnip/twitter_compliance_message.rb', line 14

def to_h
  @raw
end

#to_jsonObject

[View source]

22
23
24
# File 'lib/gnip_api/gnip/twitter_compliance_message.rb', line 22

def to_json
  @raw.to_json
end