Class: AdvancedBilling::ListServiceCreditsResponse
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- AdvancedBilling::ListServiceCreditsResponse
- Defined in:
- lib/advanced_billing/models/list_service_credits_response.rb
Overview
ListServiceCreditsResponse Model.
Instance Attribute Summary collapse
-
#service_credits ⇒ Array[ServiceCredit1]
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(service_credits: SKIP, additional_properties: {}) ⇒ ListServiceCreditsResponse
constructor
A new instance of ListServiceCreditsResponse.
-
#inspect ⇒ Object
Provides a debugging-friendly string with detailed object information.
-
#to_s ⇒ Object
Provides a human-readable string representation of the object.
Methods inherited from BaseModel
#check_for_conflict, #get_additional_properties, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json
Constructor Details
#initialize(service_credits: SKIP, additional_properties: {}) ⇒ ListServiceCreditsResponse
Returns a new instance of ListServiceCreditsResponse.
35 36 37 38 39 40 41 42 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 35 def initialize(service_credits: SKIP, additional_properties: {}) # Add additional model properties to the instance. additional_properties.each do |_name, _value| instance_variable_set("@#{_name}", _value) end @service_credits = service_credits unless service_credits == SKIP end |
Instance Attribute Details
#service_credits ⇒ Array[ServiceCredit1]
TODO: Write general description for this method
14 15 16 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 14 def service_credits @service_credits end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 45 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 service_credits = nil unless hash['service_credits'].nil? service_credits = [] hash['service_credits'].each do |structure| service_credits << (ServiceCredit1.from_hash(structure) if structure) end end service_credits = SKIP unless hash.key?('service_credits') # Clean out expected properties from Hash. additional_properties = hash.reject { |k, _| names.value?(k) } # Create object from extracted values. ListServiceCreditsResponse.new(service_credits: service_credits, additional_properties: additional_properties) end |
.names ⇒ Object
A mapping from model property names to API property names.
17 18 19 20 21 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 17 def self.names @_hash = {} if @_hash.nil? @_hash['service_credits'] = 'service_credits' @_hash end |
.nullables ⇒ Object
An array for nullable fields
31 32 33 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 31 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
24 25 26 27 28 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 24 def self.optionals %w[ service_credits ] end |
Instance Method Details
#inspect ⇒ Object
Provides a debugging-friendly string with detailed object information.
76 77 78 79 80 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 76 def inspect class_name = self.class.name.split('::').last "<#{class_name} service_credits: #{@service_credits.inspect}, additional_properties:"\ " #{get_additional_properties}>" end |
#to_s ⇒ Object
Provides a human-readable string representation of the object.
69 70 71 72 73 |
# File 'lib/advanced_billing/models/list_service_credits_response.rb', line 69 def to_s class_name = self.class.name.split('::').last "<#{class_name} service_credits: #{@service_credits}, additional_properties:"\ " #{get_additional_properties}>" end |