class ArrayMapObject

Attributes

boolean_false_arr[RW]
boolean_true_arr[RW]
int_arr[RW]
int_arr_map[RW]
int_map[RW]
pet_arr[RW]
pet_arr_map[RW]
pet_map[RW]

Public Class Methods

attribute_map() click to toggle source
# File lib/aplus-content-api-model/spec/base_object_spec.rb, line 6
def self.attribute_map
  {
    :int_arr => :int_arr,
    :pet_arr => :pet_arr,
    :int_map => :int_map,
    :pet_map => :pet_map,
    :int_arr_map => :int_arr_map,
    :pet_arr_map => :pet_arr_map,
    :boolean_true_arr  => :boolean_true_arr,
    :boolean_false_arr => :boolean_false_arr,
  }
end
swagger_types() click to toggle source
# File lib/aplus-content-api-model/spec/base_object_spec.rb, line 19
def self.swagger_types
  {
    :int_arr => :'Array<Integer>',
    :pet_arr => :'Array<Pet>',
    :int_map => :'Hash<String, Integer>',
    :pet_map => :'Hash<String, Pet>',
    :int_arr_map => :'Hash<String, Array<Integer>>',
    :pet_arr_map => :'Hash<String, Array<Pet>>',
    :boolean_true_arr  => :'Array<BOOLEAN>',
    :boolean_false_arr => :'Array<BOOLEAN>',
  }
end