Class: MisarBlog::Models::Profile
- Inherits:
-
Base
- Object
- Base
- MisarBlog::Models::Profile
show all
- Defined in:
- lib/misarblog/models.rb
Overview
The authenticated developer's public profile (GET /me).
Instance Attribute Summary
Attributes inherited from Base
#raw
Instance Method Summary
collapse
Methods inherited from Base
#[], #initialize, #to_h
Instance Method Details
#avatar_url ⇒ Object
65
|
# File 'lib/misarblog/models.rb', line 65
def avatar_url; @raw["avatar_url"]; end
|
#bio ⇒ Object
64
|
# File 'lib/misarblog/models.rb', line 64
def bio; @raw["bio"]; end
|
#created_at ⇒ Object
68
|
# File 'lib/misarblog/models.rb', line 68
def created_at; @raw["created_at"]; end
|
#display_name ⇒ Object
63
|
# File 'lib/misarblog/models.rb', line 63
def display_name; @raw["display_name"]; end
|
#id ⇒ Object
61
|
# File 'lib/misarblog/models.rb', line 61
def id; @raw["id"]; end
|
#profile_url ⇒ Object
67
|
# File 'lib/misarblog/models.rb', line 67
def profile_url; @raw["profile_url"]; end
|
#stripe_connected ⇒ Object
66
|
# File 'lib/misarblog/models.rb', line 66
def stripe_connected; @raw["stripe_connected"]; end
|
#username ⇒ Object
62
|
# File 'lib/misarblog/models.rb', line 62
def username; @raw["username"]; end
|