Class: Openapi3Parser::Node::Encoding
- Inherits:
-
Object
- Object
- Object
- Openapi3Parser::Node::Encoding
show all
- Defined in:
- lib/openapi3_parser/node/encoding.rb
Overview
Instance Attribute Summary
Attributes inherited from Object
#node_context, #node_data
Instance Method Summary
collapse
Methods inherited from Object
#==, #[], #each, #extension, #initialize, #inspect, #node_at, #render_markdown, #values
Instance Method Details
#allow_reserved? ⇒ Boolean
30
31
32
|
# File 'lib/openapi3_parser/node/encoding.rb', line 30
def allow_reserved?
self["allowReserved"]
end
|
#content_type ⇒ String?
10
11
12
|
# File 'lib/openapi3_parser/node/encoding.rb', line 10
def content_type
self["contentType"]
end
|
#explode? ⇒ Boolean
25
26
27
|
# File 'lib/openapi3_parser/node/encoding.rb', line 25
def explode?
self["explode"]
end
|
15
16
17
|
# File 'lib/openapi3_parser/node/encoding.rb', line 15
def
self["headers"]
end
|
#style ⇒ String?
20
21
22
|
# File 'lib/openapi3_parser/node/encoding.rb', line 20
def style
self["style"]
end
|