class ESI::GetCharactersCharacterIdStatsMining
mining object
Attributes
drone_mine
integer
ore_arkonor
integer
ore_bistot
integer
ore_crokite
integer
ore_dark_ochre
integer
ore_gneiss
integer
ore_harvestable_cloud
integer
ore_hedbergite
integer
ore_hemorphite
integer
ore_ice
integer
ore_jaspet
integer
ore_kernite
integer
ore_mercoxit
integer
ore_omber
integer
ore_plagioclase
integer
ore_pyroxeres
integer
ore_scordite
integer
ore_spodumain
integer
ore_veldspar
integer
Public Class Methods
Attribute mapping from ruby-style variable name to JSON key.
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 76 def self.attribute_map { :'drone_mine' => :'drone_mine', :'ore_arkonor' => :'ore_arkonor', :'ore_bistot' => :'ore_bistot', :'ore_crokite' => :'ore_crokite', :'ore_dark_ochre' => :'ore_dark_ochre', :'ore_gneiss' => :'ore_gneiss', :'ore_harvestable_cloud' => :'ore_harvestable_cloud', :'ore_hedbergite' => :'ore_hedbergite', :'ore_hemorphite' => :'ore_hemorphite', :'ore_ice' => :'ore_ice', :'ore_jaspet' => :'ore_jaspet', :'ore_kernite' => :'ore_kernite', :'ore_mercoxit' => :'ore_mercoxit', :'ore_omber' => :'ore_omber', :'ore_plagioclase' => :'ore_plagioclase', :'ore_pyroxeres' => :'ore_pyroxeres', :'ore_scordite' => :'ore_scordite', :'ore_spodumain' => :'ore_spodumain', :'ore_veldspar' => :'ore_veldspar' } end
Initializes the object @param [Hash] attributes Model attributes in the form of hash
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 127 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'drone_mine') self.drone_mine = attributes[:'drone_mine'] end if attributes.has_key?(:'ore_arkonor') self.ore_arkonor = attributes[:'ore_arkonor'] end if attributes.has_key?(:'ore_bistot') self.ore_bistot = attributes[:'ore_bistot'] end if attributes.has_key?(:'ore_crokite') self.ore_crokite = attributes[:'ore_crokite'] end if attributes.has_key?(:'ore_dark_ochre') self.ore_dark_ochre = attributes[:'ore_dark_ochre'] end if attributes.has_key?(:'ore_gneiss') self.ore_gneiss = attributes[:'ore_gneiss'] end if attributes.has_key?(:'ore_harvestable_cloud') self.ore_harvestable_cloud = attributes[:'ore_harvestable_cloud'] end if attributes.has_key?(:'ore_hedbergite') self.ore_hedbergite = attributes[:'ore_hedbergite'] end if attributes.has_key?(:'ore_hemorphite') self.ore_hemorphite = attributes[:'ore_hemorphite'] end if attributes.has_key?(:'ore_ice') self.ore_ice = attributes[:'ore_ice'] end if attributes.has_key?(:'ore_jaspet') self.ore_jaspet = attributes[:'ore_jaspet'] end if attributes.has_key?(:'ore_kernite') self.ore_kernite = attributes[:'ore_kernite'] end if attributes.has_key?(:'ore_mercoxit') self.ore_mercoxit = attributes[:'ore_mercoxit'] end if attributes.has_key?(:'ore_omber') self.ore_omber = attributes[:'ore_omber'] end if attributes.has_key?(:'ore_plagioclase') self.ore_plagioclase = attributes[:'ore_plagioclase'] end if attributes.has_key?(:'ore_pyroxeres') self.ore_pyroxeres = attributes[:'ore_pyroxeres'] end if attributes.has_key?(:'ore_scordite') self.ore_scordite = attributes[:'ore_scordite'] end if attributes.has_key?(:'ore_spodumain') self.ore_spodumain = attributes[:'ore_spodumain'] end if attributes.has_key?(:'ore_veldspar') self.ore_veldspar = attributes[:'ore_veldspar'] end end
Attribute type mapping.
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 101 def self.swagger_types { :'drone_mine' => :'Integer', :'ore_arkonor' => :'Integer', :'ore_bistot' => :'Integer', :'ore_crokite' => :'Integer', :'ore_dark_ochre' => :'Integer', :'ore_gneiss' => :'Integer', :'ore_harvestable_cloud' => :'Integer', :'ore_hedbergite' => :'Integer', :'ore_hemorphite' => :'Integer', :'ore_ice' => :'Integer', :'ore_jaspet' => :'Integer', :'ore_kernite' => :'Integer', :'ore_mercoxit' => :'Integer', :'ore_omber' => :'Integer', :'ore_plagioclase' => :'Integer', :'ore_pyroxeres' => :'Integer', :'ore_scordite' => :'Integer', :'ore_spodumain' => :'Integer', :'ore_veldspar' => :'Integer' } end
Public Instance Methods
Checks equality by comparing each attribute. @param [Object] Object to be compared
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 225 def ==(o) return true if self.equal?(o) self.class == o.class && drone_mine == o.drone_mine && ore_arkonor == o.ore_arkonor && ore_bistot == o.ore_bistot && ore_crokite == o.ore_crokite && ore_dark_ochre == o.ore_dark_ochre && ore_gneiss == o.ore_gneiss && ore_harvestable_cloud == o.ore_harvestable_cloud && ore_hedbergite == o.ore_hedbergite && ore_hemorphite == o.ore_hemorphite && ore_ice == o.ore_ice && ore_jaspet == o.ore_jaspet && ore_kernite == o.ore_kernite && ore_mercoxit == o.ore_mercoxit && ore_omber == o.ore_omber && ore_plagioclase == o.ore_plagioclase && ore_pyroxeres == o.ore_pyroxeres && ore_scordite == o.ore_scordite && ore_spodumain == o.ore_spodumain && ore_veldspar == o.ore_veldspar end
Deserializes the data based on type @param string type Data type @param string value Value to be deserialized @return [Object] Deserialized data
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 285 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = ESI.const_get(type).new temp_model.build_from_hash(value) end end
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 351 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 264 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end
@see the `==` method @param [Object] Object to be compared
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 251 def eql?(o) self == o end
Calculates hash code according to all attributes. @return [Fixnum] Hash code
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 257 def hash [drone_mine, ore_arkonor, ore_bistot, ore_crokite, ore_dark_ochre, ore_gneiss, ore_harvestable_cloud, ore_hedbergite, ore_hemorphite, ore_ice, ore_jaspet, ore_kernite, ore_mercoxit, ore_omber, ore_plagioclase, ore_pyroxeres, ore_scordite, ore_spodumain, ore_veldspar].hash end
Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 212 def list_invalid_properties invalid_properties = Array.new invalid_properties end
Returns the object in the form of hash @return [Hash] Returns the object in the form of hash
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 337 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end
Returns the string representation of the object @return [String] String presentation of the object
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 325 def to_s to_hash.to_s end
Check to see if the all the properties in the model are valid @return true if the model is valid
# File lib/ruby-esi/models/get_characters_character_id_stats_mining.rb, line 219 def valid? true end