Sha256: a4179a3e40889d2ab182102f30d798ca24dade6c76144c7a7bfef0fb141a648b

Contents?: true

Size: 312 Bytes

Versions: 7

Compression:

Stored size: 312 Bytes

Contents

module TryApi
  class Parameter < TryApi::Base
    typesafe_accessor :name, String
    typesafe_accessor :type, String
    typesafe_accessor :parameters, Array, default: [], items_type: TryApi::Parameter
    typesafe_accessor :required, Boolean, default: true
    typesafe_accessor :description, String
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
try_api-0.1.6 app/models/try_api/parameter.rb
try_api-0.1.5 app/models/try_api/parameter.rb
try_api-0.1.4 app/models/try_api/parameter.rb
try_api-0.1.3 app/models/try_api/parameter.rb
try_api-0.1.2 app/models/try_api/parameter.rb
try_api-0.1.1 app/models/try_api/parameter.rb
try_api-0.1.0 app/models/try_api/parameter.rb