Class: AppStoreConnect::Schema::Type

Inherits:
Object
  • Object
show all
Defined in:
lib/app_store_connect/schema/type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Type

Returns a new instance of Type.



8
9
10
11
12
# File 'lib/app_store_connect/schema/type.rb', line 8

def initialize(options)
  @type = options[:type]
  @values = options[:values]
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



6
7
8
# File 'lib/app_store_connect/schema/type.rb', line 6

def options
  @options
end

#typeObject (readonly)

Returns the value of attribute type.



6
7
8
# File 'lib/app_store_connect/schema/type.rb', line 6

def type
  @type
end

#valuesObject (readonly)

Returns the value of attribute values.



6
7
8
# File 'lib/app_store_connect/schema/type.rb', line 6

def values
  @values
end