Class: Angus::SDoc::Definitions::ProxyOperation
- Inherits:
-
Object
- Object
- Angus::SDoc::Definitions::ProxyOperation
- Defined in:
- lib/angus/definitions/proxy_operation.rb
Instance Attribute Summary collapse
-
#code_name ⇒ String
The code name of the message.
-
#method ⇒ String
The HTTP method of the operation.
-
#path ⇒ String
The path of the operation.
-
#service_name ⇒ String
The service name of the operation.
Instance Attribute Details
#code_name ⇒ String
Returns the code name of the message. It is a human readable unique identifier. It has to start with Mayus and it has to be camelcase.
8 9 10 |
# File 'lib/angus/definitions/proxy_operation.rb', line 8 def code_name @code_name end |
#method ⇒ String
Returns the HTTP method of the operation.
16 17 18 |
# File 'lib/angus/definitions/proxy_operation.rb', line 16 def method @method end |
#path ⇒ String
Returns the path of the operation.
12 13 14 |
# File 'lib/angus/definitions/proxy_operation.rb', line 12 def path @path end |
#service_name ⇒ String
Returns the service name of the operation.
20 21 22 |
# File 'lib/angus/definitions/proxy_operation.rb', line 20 def service_name @service_name end |