Class: ServiceContract::AbstractParameter
- Inherits:
-
Struct
- Object
- Struct
- ServiceContract::AbstractParameter
show all
- Defined in:
- lib/service_contract/abstract_parameter.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Instance Attribute Details
#definition ⇒ Object
Returns the value of attribute definition
2
3
4
|
# File 'lib/service_contract/abstract_parameter.rb', line 2
def definition
@definition
end
|
Instance Method Details
#default ⇒ Object
15
16
17
|
# File 'lib/service_contract/abstract_parameter.rb', line 15
def default
nil
end
|
#doc ⇒ Object
19
20
21
|
# File 'lib/service_contract/abstract_parameter.rb', line 19
def doc
nil
end
|
#name ⇒ Object
3
4
5
|
# File 'lib/service_contract/abstract_parameter.rb', line 3
def name
raise :not_implemented
end
|
#subtype ⇒ Object
11
12
13
|
# File 'lib/service_contract/abstract_parameter.rb', line 11
def subtype
nil
end
|
#type ⇒ Object
7
8
9
|
# File 'lib/service_contract/abstract_parameter.rb', line 7
def type
raise :not_implemented
end
|