Class: NewStoreApi::PriceOverride

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/new_store_api/models/price_override.rb

Overview

A manual price override applied to an item. The overridden amount is carried by the sibling price field; this object only records why it was applied.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json

Constructor Details

#initialize(reason_type = nil, note = SKIP) ⇒ PriceOverride

Returns a new instance of PriceOverride.



44
45
46
47
# File 'lib/new_store_api/models/price_override.rb', line 44

def initialize(reason_type = nil, note = SKIP)
  @note = note unless note == SKIP
  @reason_type = reason_type
end

Instance Attribute Details

#noteString

Optional free-text note explaining the override.

Returns:

  • (String)


15
16
17
# File 'lib/new_store_api/models/price_override.rb', line 15

def note
  @note
end

#reason_typeReasonTypeEnum

Whether the override cites a predefined reason code or a free-text custom reason.

Returns:



20
21
22
# File 'lib/new_store_api/models/price_override.rb', line 20

def reason_type
  @reason_type
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



50
51
52
53
54
55
56
57
58
59
60
# File 'lib/new_store_api/models/price_override.rb', line 50

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  reason_type = hash.key?('reason_type') ? hash['reason_type'] : nil
  note = hash.key?('note') ? hash['note'] : SKIP

  # Create object from extracted values.
  PriceOverride.new(reason_type,
                    note)
end

.namesObject

A mapping from model property names to API property names.



23
24
25
26
27
28
# File 'lib/new_store_api/models/price_override.rb', line 23

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['note'] = 'note'
  @_hash['reason_type'] = 'reason_type'
  @_hash
end

.nullablesObject

An array for nullable fields



38
39
40
41
42
# File 'lib/new_store_api/models/price_override.rb', line 38

def self.nullables
  %w[
    note
  ]
end

.optionalsObject

An array for optional fields



31
32
33
34
35
# File 'lib/new_store_api/models/price_override.rb', line 31

def self.optionals
  %w[
    note
  ]
end

.validate(value) ⇒ Object

Validates an instance of the object from a given value.

Parameters:

  • The (PriceOverride | Hash)

    value against the validation is performed.



64
65
66
67
68
69
70
71
72
73
74
# File 'lib/new_store_api/models/price_override.rb', line 64

def self.validate(value)
  if value.instance_of? self
    return APIHelper.valid_type?(value.reason_type,
                                 ->(val) { ReasonTypeEnum.validate(val) })
  end

  return false unless value.instance_of? Hash

  APIHelper.valid_type?(value['reason_type'],
                        ->(val) { ReasonTypeEnum.validate(val) })
end

Instance Method Details

#inspectObject

Provides a debugging-friendly string with detailed object information.



83
84
85
86
# File 'lib/new_store_api/models/price_override.rb', line 83

def inspect
  class_name = self.class.name.split('::').last
  "<#{class_name} note: #{@note.inspect}, reason_type: #{@reason_type.inspect}>"
end

#to_sObject

Provides a human-readable string representation of the object.



77
78
79
80
# File 'lib/new_store_api/models/price_override.rb', line 77

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} note: #{@note}, reason_type: #{@reason_type}>"
end