12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# File 'lib/hope/source/twitter.rb', line 12
def self.properties
{
"protected" => "bool",
"default_profile" => "bool",
"contributors_enabled" => "bool",
"profile_text_color" => "string",
"name" => "string",
"default_profile_image" => "bool",
"profile_sidebar_fill_color" => "string",
"id_str" => "string",
"profile_background_tile" => "bool",
"utc_offset" => "string",
"friends_count" => "int",
"profile_image_url" => "string",
"is_translator" => "bool",
"following" => "bool",
"description" => "string",
"location" => "string",
"follow_request_sent" => "string",
"verified" => "bool",
"profile_link_color" => "string",
"followers_count" => "int",
"screen_name" => "string",
"profile_sidebar_border_color" => "string",
"url" => "string",
"show_all_inline_media" => "bool",
"geo_enabled" => "bool",
"time_zone" => "string",
"id" => "long",
"notifications" => "bool",
"profile_use_background_image" => "bool",
"favourites_count" => "int",
"created_at" => "string",
"listed_count" => "int",
"profile_background_image_url_https" => "string",
"profile_background_color" => "string",
"lang" => "string",
"statuses_count" => "int",
"profile_background_image_url" => "string",
"profile_image_url_https" => "string"
}
end
|