Class: UltracartClient::ItemChannelPartnerMapping
- Inherits:
-
Object
- Object
- UltracartClient::ItemChannelPartnerMapping
- Defined in:
- lib/ultracart_api/models/item_channel_partner_mapping.rb
Instance Attribute Summary collapse
-
#barcode_ua ⇒ Object
Barcode UA (EDI only).
-
#barcode_uc ⇒ Object
Barcode UC (EDI only).
-
#barcode_ui ⇒ Object
Barcode UI (EDI only).
-
#barcode_uk ⇒ Object
Barcode UK (EDI only).
-
#buyer_catalog_number ⇒ Object
Buyer catalog number (EDI only).
-
#buyer_dpci ⇒ Object
Buyer DPCI (EDI only).
-
#buyer_item_number ⇒ Object
Buyer item number (EDI only).
-
#channel_partner_code ⇒ Object
Channel partner code.
-
#channel_partner_oid ⇒ Object
Channel partner object identifier.
-
#cost ⇒ Object
Cost given to this channel partner.
-
#from_item_id ⇒ Object
From Item ID.
-
#from_sku ⇒ Object
From SKU.
-
#mutually_defined_number ⇒ Object
Mutually defined number (EDI only).
-
#quantity_ratio_cp ⇒ Object
Ratio (Channel Partner).
-
#quantity_ratio_uc ⇒ Object
Ratio (UltraCart).
-
#sku ⇒ Object
SKU.
-
#unit_of_measure ⇒ Object
Unit of measure.
-
#vendor_number ⇒ Object
Vendor number (EDI only).
-
#vendor_style_number ⇒ Object
Vendor style number (EDI only).
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ItemChannelPartnerMapping
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ ItemChannelPartnerMapping
Initializes the object
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 126 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?(:'barcode_ua') self. = attributes[:'barcode_ua'] end if attributes.has_key?(:'barcode_uc') self. = attributes[:'barcode_uc'] end if attributes.has_key?(:'barcode_ui') self. = attributes[:'barcode_ui'] end if attributes.has_key?(:'barcode_uk') self. = attributes[:'barcode_uk'] end if attributes.has_key?(:'buyer_catalog_number') self.buyer_catalog_number = attributes[:'buyer_catalog_number'] end if attributes.has_key?(:'buyer_dpci') self.buyer_dpci = attributes[:'buyer_dpci'] end if attributes.has_key?(:'buyer_item_number') self.buyer_item_number = attributes[:'buyer_item_number'] end if attributes.has_key?(:'channel_partner_code') self.channel_partner_code = attributes[:'channel_partner_code'] end if attributes.has_key?(:'channel_partner_oid') self.channel_partner_oid = attributes[:'channel_partner_oid'] end if attributes.has_key?(:'cost') self.cost = attributes[:'cost'] end if attributes.has_key?(:'from_item_id') self.from_item_id = attributes[:'from_item_id'] end if attributes.has_key?(:'from_sku') self.from_sku = attributes[:'from_sku'] end if attributes.has_key?(:'mutually_defined_number') self.mutually_defined_number = attributes[:'mutually_defined_number'] end if attributes.has_key?(:'quantity_ratio_cp') self.quantity_ratio_cp = attributes[:'quantity_ratio_cp'] end if attributes.has_key?(:'quantity_ratio_uc') self.quantity_ratio_uc = attributes[:'quantity_ratio_uc'] end if attributes.has_key?(:'sku') self.sku = attributes[:'sku'] end if attributes.has_key?(:'unit_of_measure') self.unit_of_measure = attributes[:'unit_of_measure'] end if attributes.has_key?(:'vendor_number') self.vendor_number = attributes[:'vendor_number'] end if attributes.has_key?(:'vendor_style_number') self.vendor_style_number = attributes[:'vendor_style_number'] end end |
Instance Attribute Details
#barcode_ua ⇒ Object
Barcode UA (EDI only)
18 19 20 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 18 def @barcode_ua end |
#barcode_uc ⇒ Object
Barcode UC (EDI only)
21 22 23 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 21 def @barcode_uc end |
#barcode_ui ⇒ Object
Barcode UI (EDI only)
24 25 26 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 24 def @barcode_ui end |
#barcode_uk ⇒ Object
Barcode UK (EDI only)
27 28 29 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 27 def @barcode_uk end |
#buyer_catalog_number ⇒ Object
Buyer catalog number (EDI only)
30 31 32 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 30 def buyer_catalog_number @buyer_catalog_number end |
#buyer_dpci ⇒ Object
Buyer DPCI (EDI only)
33 34 35 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 33 def buyer_dpci @buyer_dpci end |
#buyer_item_number ⇒ Object
Buyer item number (EDI only)
36 37 38 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 36 def buyer_item_number @buyer_item_number end |
#channel_partner_code ⇒ Object
Channel partner code
39 40 41 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 39 def channel_partner_code @channel_partner_code end |
#channel_partner_oid ⇒ Object
Channel partner object identifier
42 43 44 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 42 def channel_partner_oid @channel_partner_oid end |
#cost ⇒ Object
Cost given to this channel partner
45 46 47 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 45 def cost @cost end |
#from_item_id ⇒ Object
From Item ID
48 49 50 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 48 def from_item_id @from_item_id end |
#from_sku ⇒ Object
From SKU
51 52 53 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 51 def from_sku @from_sku end |
#mutually_defined_number ⇒ Object
Mutually defined number (EDI only)
54 55 56 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 54 def mutually_defined_number @mutually_defined_number end |
#quantity_ratio_cp ⇒ Object
Ratio (Channel Partner)
57 58 59 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 57 def quantity_ratio_cp @quantity_ratio_cp end |
#quantity_ratio_uc ⇒ Object
Ratio (UltraCart)
60 61 62 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 60 def quantity_ratio_uc @quantity_ratio_uc end |
#sku ⇒ Object
SKU
63 64 65 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 63 def sku @sku end |
#unit_of_measure ⇒ Object
Unit of measure
66 67 68 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 66 def unit_of_measure @unit_of_measure end |
#vendor_number ⇒ Object
Vendor number (EDI only)
69 70 71 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 69 def vendor_number @vendor_number end |
#vendor_style_number ⇒ Object
Vendor style number (EDI only)
72 73 74 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 72 def vendor_style_number @vendor_style_number end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 75 def self.attribute_map { :'barcode_ua' => :'barcode_ua', :'barcode_uc' => :'barcode_uc', :'barcode_ui' => :'barcode_ui', :'barcode_uk' => :'barcode_uk', :'buyer_catalog_number' => :'buyer_catalog_number', :'buyer_dpci' => :'buyer_dpci', :'buyer_item_number' => :'buyer_item_number', :'channel_partner_code' => :'channel_partner_code', :'channel_partner_oid' => :'channel_partner_oid', :'cost' => :'cost', :'from_item_id' => :'from_item_id', :'from_sku' => :'from_sku', :'mutually_defined_number' => :'mutually_defined_number', :'quantity_ratio_cp' => :'quantity_ratio_cp', :'quantity_ratio_uc' => :'quantity_ratio_uc', :'sku' => :'sku', :'unit_of_measure' => :'unit_of_measure', :'vendor_number' => :'vendor_number', :'vendor_style_number' => :'vendor_style_number' } end |
.swagger_types ⇒ Object
Attribute type mapping.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 100 def self.swagger_types { :'barcode_ua' => :'String', :'barcode_uc' => :'String', :'barcode_ui' => :'String', :'barcode_uk' => :'String', :'buyer_catalog_number' => :'String', :'buyer_dpci' => :'String', :'buyer_item_number' => :'String', :'channel_partner_code' => :'String', :'channel_partner_oid' => :'Integer', :'cost' => :'Float', :'from_item_id' => :'String', :'from_sku' => :'String', :'mutually_defined_number' => :'String', :'quantity_ratio_cp' => :'Integer', :'quantity_ratio_uc' => :'Integer', :'sku' => :'String', :'unit_of_measure' => :'String', :'vendor_number' => :'String', :'vendor_style_number' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 269 def ==(o) return true if self.equal?(o) self.class == o.class && == o. && == o. && == o. && == o. && buyer_catalog_number == o.buyer_catalog_number && buyer_dpci == o.buyer_dpci && buyer_item_number == o.buyer_item_number && channel_partner_code == o.channel_partner_code && channel_partner_oid == o.channel_partner_oid && cost == o.cost && from_item_id == o.from_item_id && from_sku == o.from_sku && mutually_defined_number == o.mutually_defined_number && quantity_ratio_cp == o.quantity_ratio_cp && quantity_ratio_uc == o.quantity_ratio_uc && sku == o.sku && unit_of_measure == o.unit_of_measure && vendor_number == o.vendor_number && vendor_style_number == o.vendor_style_number end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 329 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 = UltracartClient.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
395 396 397 398 399 400 401 402 403 404 405 406 407 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 395 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 |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 308 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 |
#eql?(o) ⇒ Boolean
295 296 297 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 295 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
301 302 303 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 301 def hash [, , , , buyer_catalog_number, buyer_dpci, buyer_item_number, channel_partner_code, channel_partner_oid, cost, from_item_id, from_sku, mutually_defined_number, quantity_ratio_cp, quantity_ratio_uc, sku, unit_of_measure, vendor_number, vendor_style_number].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 211 def list_invalid_properties invalid_properties = Array.new if !@from_item_id.nil? && @from_item_id.to_s.length > 30 invalid_properties.push('invalid value for "from_item_id", the character length must be smaller than or equal to 30.') end if !@from_sku.nil? && @from_sku.to_s.length > 50 invalid_properties.push('invalid value for "from_sku", the character length must be smaller than or equal to 50.') end if !@sku.nil? && @sku.to_s.length > 50 invalid_properties.push('invalid value for "sku", the character length must be smaller than or equal to 50.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
375 376 377 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 375 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
381 382 383 384 385 386 387 388 389 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 381 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 |
#to_s ⇒ String
Returns the string representation of the object
369 370 371 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 369 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
230 231 232 233 234 235 |
# File 'lib/ultracart_api/models/item_channel_partner_mapping.rb', line 230 def valid? return false if !@from_item_id.nil? && @from_item_id.to_s.length > 30 return false if !@from_sku.nil? && @from_sku.to_s.length > 50 return false if !@sku.nil? && @sku.to_s.length > 50 true end |