Class: Flickr::Method
- Inherits:
-
Object
- Object
- Flickr::Method
- Defined in:
- lib/flickr/reflection.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
Returns the value of attribute arguments.
-
#authenticated ⇒ Object
readonly
Returns the value of attribute authenticated.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#explanation ⇒ Object
readonly
Returns the value of attribute explanation.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(name, authenticated, description, response, explanation) ⇒ Method
constructor
A new instance of Method.
Constructor Details
#initialize(name, authenticated, description, response, explanation) ⇒ Method
Returns a new instance of Method.
7 8 9 10 11 12 13 14 15 |
# File 'lib/flickr/reflection.rb', line 7 def initialize(name,authenticated,description,response,explanation) @name = name @authenticated = authenticated @description = description @response = response @explanation = explanation @arguments = [] @errors = [] end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
Returns the value of attribute arguments.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def arguments @arguments end |
#authenticated ⇒ Object (readonly)
Returns the value of attribute authenticated.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def authenticated @authenticated end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def description @description end |
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def errors @errors end |
#explanation ⇒ Object (readonly)
Returns the value of attribute explanation.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def explanation @explanation end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def name @name end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
4 5 6 |
# File 'lib/flickr/reflection.rb', line 4 def response @response end |