Sha256: fc0d457a0dbcc4e83b58e8f9742b56b39139f8d642fb8e5f6b92f29f3556fe2a

Contents?: true

Size: 359 Bytes

Versions: 3

Compression:

Stored size: 359 Bytes

Contents

module Expressir
  module Model
    class Interface
      USE = :USE
      REFERENCE = :REFERENCE

      attr_accessor :kind
      attr_accessor :schema
      attr_accessor :items

      def initialize(options = {})
        @kind = options[:kind]
        @schema = options[:schema]
        @items = options[:items]
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
expressir-0.2.6 lib/expressir/model/interface.rb
expressir-0.2.5-x64-mingw32 lib/expressir/model/interface.rb
expressir-0.2.4-x64-mingw32 lib/expressir/model/interface.rb