class Argo::ArrayProperty

Attributes

items[R]

Public Class Methods

new(items:, **kwargs) click to toggle source
Calls superclass method
# File lib/argo/array_property.rb, line 5
def initialize(items:, **kwargs)
  super(**kwargs)
  @items = items
end