Class: ShellCardManagementApIs::PurchaseCategoryResponse
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- ShellCardManagementApIs::PurchaseCategoryResponse
- Defined in:
- lib/shell_card_management_ap_is/models/purchase_category_response.rb
Overview
PurchaseCategoryResponse Model.
Instance Attribute Summary collapse
-
#error ⇒ ErrorStatus
TODO: Write general description for this method.
-
#purchase_categories ⇒ Array[PurchaseCategory1AllOf0]
TODO: Write general description for this method.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(purchase_categories = SKIP, error = SKIP) ⇒ PurchaseCategoryResponse
constructor
A new instance of PurchaseCategoryResponse.
Methods inherited from BaseModel
Constructor Details
#initialize(purchase_categories = SKIP, error = SKIP) ⇒ PurchaseCategoryResponse
Returns a new instance of PurchaseCategoryResponse.
41 42 43 44 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 41 def initialize(purchase_categories = SKIP, error = SKIP) @purchase_categories = purchase_categories unless purchase_categories == SKIP @error = error unless error == SKIP end |
Instance Attribute Details
#error ⇒ ErrorStatus
TODO: Write general description for this method
18 19 20 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 18 def error @error end |
#purchase_categories ⇒ Array[PurchaseCategory1AllOf0]
TODO: Write general description for this method
14 15 16 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 14 def purchase_categories @purchase_categories end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 47 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. # Parameter is an array, so we need to iterate through it purchase_categories = nil unless hash['PurchaseCategories'].nil? purchase_categories = [] hash['PurchaseCategories'].each do |structure| purchase_categories << (PurchaseCategory1AllOf0.from_hash(structure) if structure) end end purchase_categories = SKIP unless hash.key?('PurchaseCategories') error = ErrorStatus.from_hash(hash['Error']) if hash['Error'] # Create object from extracted values. PurchaseCategoryResponse.new(purchase_categories, error) end |
.names ⇒ Object
A mapping from model property names to API property names.
21 22 23 24 25 26 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 21 def self.names @_hash = {} if @_hash.nil? @_hash['purchase_categories'] = 'PurchaseCategories' @_hash['error'] = 'Error' @_hash end |
.nullables ⇒ Object
An array for nullable fields
37 38 39 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 37 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
29 30 31 32 33 34 |
# File 'lib/shell_card_management_ap_is/models/purchase_category_response.rb', line 29 def self.optionals %w[ purchase_categories error ] end |