Class: Swaggard::Swagger::Parameters::List

Inherits:
Base
  • Object
show all
Defined in:
lib/swaggard/swagger/parameters/list.rb

Instance Attribute Summary

Attributes inherited from Base

#description, #is_required, #name

Instance Method Summary collapse

Constructor Details

#initialize(string) ⇒ List

Returns a new instance of List.



7
8
9
10
# File 'lib/swaggard/swagger/parameters/list.rb', line 7

def initialize(string)
  @in = 'query'
  parse(string)
end

Instance Method Details

#to_docObject



12
13
14
15
16
17
18
19
# File 'lib/swaggard/swagger/parameters/list.rb', line 12

def to_doc
  doc = super
  doc['schema'] = {
    'type'  => 'array',
    'items' => { 'type' => @data_type, 'enum'  => @list_values },
  }
  doc
end