Class: Angus::SDoc::Definitions::ProxyOperation

Inherits:
Object
  • Object
show all
Defined in:
lib/angus/definitions/proxy_operation.rb

Instance Attribute Summary collapse

Instance Attribute Details

#code_nameString

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.

Returns:

  • (String)

    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

#http_methodString

Returns the HTTP method of the operation.

Returns:

  • (String)

    the HTTP method of the operation.



16
17
18
# File 'lib/angus/definitions/proxy_operation.rb', line 16

def http_method
  @http_method
end

#pathString

Returns the path of the operation.

Returns:

  • (String)

    the path of the operation.



12
13
14
# File 'lib/angus/definitions/proxy_operation.rb', line 12

def path
  @path
end

#service_nameString

Returns the service name of the operation.

Returns:

  • (String)

    the service name of the operation.



20
21
22
# File 'lib/angus/definitions/proxy_operation.rb', line 20

def service_name
  @service_name
end