Class: ShellDataReportingApIs::CustomerPriceListResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb

Overview

CustomerPriceListResponse Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(request_id = SKIP, price_list = SKIP, error = SKIP) ⇒ CustomerPriceListResponse

Returns a new instance of CustomerPriceListResponse.



50
51
52
53
54
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 50

def initialize(request_id = SKIP, price_list = SKIP, error = SKIP)
  @request_id = request_id unless request_id == SKIP
  @price_list = price_list unless price_list == SKIP
  @error = error unless error == SKIP
end

Instance Attribute Details

#errorErrorStatus

UUID (according to RFC 4122 standards) for requests and responses. This will be played back in the response from the request.

Returns:



25
26
27
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 25

def error
  @error
end

#price_listArray[PriceList]

UUID (according to RFC 4122 standards) for requests and responses. This will be played back in the response from the request.

Returns:



20
21
22
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 20

def price_list
  @price_list
end

#request_idString

UUID (according to RFC 4122 standards) for requests and responses. This will be played back in the response from the request.

Returns:

  • (String)


15
16
17
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 15

def request_id
  @request_id
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 57

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  request_id = hash.key?('RequestId') ? hash['RequestId'] : SKIP
  # Parameter is an array, so we need to iterate through it
  price_list = nil
  unless hash['PriceList'].nil?
    price_list = []
    hash['PriceList'].each do |structure|
      price_list << (PriceList.from_hash(structure) if structure)
    end
  end

  price_list = SKIP unless hash.key?('PriceList')
  error = ErrorStatus.from_hash(hash['Error']) if hash['Error']

  # Create object from extracted values.
  CustomerPriceListResponse.new(request_id,
                                price_list,
                                error)
end

.namesObject

A mapping from model property names to API property names.



28
29
30
31
32
33
34
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 28

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['request_id'] = 'RequestId'
  @_hash['price_list'] = 'PriceList'
  @_hash['error'] = 'Error'
  @_hash
end

.nullablesObject

An array for nullable fields



46
47
48
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 46

def self.nullables
  []
end

.optionalsObject

An array for optional fields



37
38
39
40
41
42
43
# File 'lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb', line 37

def self.optionals
  %w[
    request_id
    price_list
    error
  ]
end