Class: Tumblr::Post::Chat

Inherits:
Tumblr::Post show all
Defined in:
lib/tumblr/post/chat.rb

Constant Summary

Constants inherited from Tumblr::Post

FIELDS, POST_BODY_SEPARATOR

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Tumblr::Post

create, #date, #delete, #draft!, #draft?, dump, #edit, #format, get_post_type, #id, infer_post_type_from_extname, infer_post_type_from_string, load, load_from_binary, load_from_path, #markdown?, #meta_data, pair_post_body_types, parse, perform, #post, #private?, #publish!, #published?, #queue!, #queued?, #reblog_key, #request_parameters, #serialize, #slug, #state, #tags, #tweet, #type

Constructor Details

#initialize(post_data = {}) ⇒ Chat

Returns a new instance of Chat.



4
5
6
7
# File 'lib/tumblr/post/chat.rb', line 4

def initialize(post_data = {})
  super(post_data)
  @type = :chat
end

Class Method Details

.post_body_keysObject



17
18
19
# File 'lib/tumblr/post/chat.rb', line 17

def self.post_body_keys
  [:conversation]
end

Instance Method Details

#conversationObject



13
14
15
# File 'lib/tumblr/post/chat.rb', line 13

def conversation
  @conversation
end

#titleObject



9
10
11
# File 'lib/tumblr/post/chat.rb', line 9

def title
  @title
end