Class: EbayTrading::Requests::Base
- Inherits:
-
Object
- Object
- EbayTrading::Requests::Base
- Includes:
- Types
- Defined in:
- lib/ebay_trading/request/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#auth_token ⇒ Object
Returns the value of attribute auth_token.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
Methods included from Types
Instance Attribute Details
#auth_token ⇒ Object
Returns the value of attribute auth_token.
5 6 7 |
# File 'lib/ebay_trading/request/base.rb', line 5 def auth_token @auth_token end |
#password ⇒ Object
Returns the value of attribute password.
5 6 7 |
# File 'lib/ebay_trading/request/base.rb', line 5 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
5 6 7 |
# File 'lib/ebay_trading/request/base.rb', line 5 def username @username end |
Instance Method Details
#call_name ⇒ Object
7 8 9 |
# File 'lib/ebay_trading/request/base.rb', line 7 def call_name self.class.to_s.split('::').last.gsub(/Request$/, '') end |