Class: RedditApi::User
- Inherits:
-
Object
- Object
- RedditApi::User
- Defined in:
- lib/reddit_api/user.rb
Instance Attribute Summary collapse
-
#username ⇒ Object
readonly
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ User
constructor
A new instance of User.
- #to_h ⇒ Object
Constructor Details
permalink #initialize(args = {}) ⇒ User
Returns a new instance of User.
7 8 9 |
# File 'lib/reddit_api/user.rb', line 7 def initialize(args = {}) @username = args.fetch("username", nil) end |
Instance Attribute Details
permalink #username ⇒ Object (readonly)
Returns the value of attribute username.
5 6 7 |
# File 'lib/reddit_api/user.rb', line 5 def username @username end |
Instance Method Details
permalink #to_h ⇒ Object
[View source]
11 12 13 |
# File 'lib/reddit_api/user.rb', line 11 def to_h { username: username } end |