=begin The WhiteLabelName API allows an easy interaction with the WhiteLabelName web service. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =end require 'date' module WhiteLabelMachineName # class TransactionCompletionRequest # The external ID helps to identify the entity and a subsequent creation of an entity with the same ID will not create a new entity. attr_accessor :external_id # attr_accessor :invoice_merchant_reference # The last completion flag indicates if this is the last completion. After the last completion is created no further completions can be issued. attr_accessor :last_completion # The line items which will be used to complete the transaction. attr_accessor :line_items # The statement descriptor explain charges or payments on bank statements. attr_accessor :statement_descriptor # The ID of the transaction which should be completed. attr_accessor :transaction_id # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'external_id' => :'externalId', :'invoice_merchant_reference' => :'invoiceMerchantReference', :'last_completion' => :'lastCompletion', :'line_items' => :'lineItems', :'statement_descriptor' => :'statementDescriptor', :'transaction_id' => :'transactionId' } end # Attribute type mapping. def self.swagger_types { :'external_id' => :'String', :'invoice_merchant_reference' => :'String', :'last_completion' => :'BOOLEAN', :'line_items' => :'Array', :'statement_descriptor' => :'String', :'transaction_id' => :'Integer' } end # Initializes the object # @param [Hash] attributes Model attributes in the form of hash 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?(:'externalId') self.external_id = attributes[:'externalId'] end if attributes.has_key?(:'invoiceMerchantReference') self.invoice_merchant_reference = attributes[:'invoiceMerchantReference'] end if attributes.has_key?(:'lastCompletion') self.last_completion = attributes[:'lastCompletion'] end if attributes.has_key?(:'lineItems') if (value = attributes[:'lineItems']).is_a?(Array) self.line_items = value end end if attributes.has_key?(:'statementDescriptor') self.statement_descriptor = attributes[:'statementDescriptor'] end if attributes.has_key?(:'transactionId') self.transaction_id = attributes[:'transactionId'] end end # Show invalid properties with the reasons. Usually used together with valid? # @return Array for valid properties with the reasons def list_invalid_properties invalid_properties = Array.new if @external_id.nil? invalid_properties.push('invalid value for "external_id", external_id cannot be nil.') end if @external_id.to_s.length > 100 invalid_properties.push('invalid value for "external_id", the character length must be smaller than or equal to 100.') end if @external_id.to_s.length < 1 invalid_properties.push('invalid value for "external_id", the character length must be great than or equal to 1.') end if !@invoice_merchant_reference.nil? && @invoice_merchant_reference.to_s.length > 100 invalid_properties.push('invalid value for "invoice_merchant_reference", the character length must be smaller than or equal to 100.') end if @last_completion.nil? invalid_properties.push('invalid value for "last_completion", last_completion cannot be nil.') end if !@statement_descriptor.nil? && @statement_descriptor.to_s.length > 22 invalid_properties.push('invalid value for "statement_descriptor", the character length must be smaller than or equal to 22.') end if @transaction_id.nil? invalid_properties.push('invalid value for "transaction_id", transaction_id cannot be nil.') end invalid_properties end # Check to see if the all the properties in the model are valid # @return true if the model is valid def valid? return false if @external_id.nil? return false if @external_id.to_s.length > 100 return false if @external_id.to_s.length < 1 return false if !@invoice_merchant_reference.nil? && @invoice_merchant_reference.to_s.length > 100 return false if @last_completion.nil? return false if !@statement_descriptor.nil? && @statement_descriptor.to_s.length > 22 return false if @transaction_id.nil? true end # Custom attribute writer method with validation # @param [Object] external_id Value to be assigned def external_id=(external_id) if external_id.nil? fail ArgumentError, 'external_id cannot be nil' end if external_id.to_s.length > 100 fail ArgumentError, 'invalid value for "external_id", the character length must be smaller than or equal to 100.' end if external_id.to_s.length < 1 fail ArgumentError, 'invalid value for "external_id", the character length must be great than or equal to 1.' end @external_id = external_id end # Custom attribute writer method with validation # @param [Object] invoice_merchant_reference Value to be assigned def invoice_merchant_reference=(invoice_merchant_reference) if !invoice_merchant_reference.nil? && invoice_merchant_reference.to_s.length > 100 fail ArgumentError, 'invalid value for "invoice_merchant_reference", the character length must be smaller than or equal to 100.' end @invoice_merchant_reference = invoice_merchant_reference end # Custom attribute writer method with validation # @param [Object] statement_descriptor Value to be assigned def statement_descriptor=(statement_descriptor) if !statement_descriptor.nil? && statement_descriptor.to_s.length > 22 fail ArgumentError, 'invalid value for "statement_descriptor", the character length must be smaller than or equal to 22.' end @statement_descriptor = statement_descriptor end # Checks equality by comparing each attribute. # @param [Object] Object to be compared def ==(o) return true if self.equal?(o) self.class == o.class && external_id == o.external_id && invoice_merchant_reference == o.invoice_merchant_reference && last_completion == o.last_completion && line_items == o.line_items && statement_descriptor == o.statement_descriptor && transaction_id == o.transaction_id end # @see the `==` method # @param [Object] Object to be compared def eql?(o) self == o end # Calculates hash code according to all attributes. # @return [Fixnum] Hash code def hash [external_id, invoice_merchant_reference, last_completion, line_items, statement_descriptor, transaction_id].hash end # Builds the object from hash # @param [Hash] attributes Model attributes in the form of hash # @return [Object] Returns the model itself 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 # Deserializes the data based on type # @param string type Data type # @param string value Value to be deserialized # @return [Object] Deserialized data 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<(?.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?.+?), (?.+)>\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 = WhiteLabelMachineName.const_get(type).new temp_model.build_from_hash(value) end end # Returns the string representation of the object # @return [String] String presentation of the object def to_s to_hash.to_s end # to_body is an alias to to_hash (backward compatibility) # @return [Hash] Returns the object in the form of hash def to_body to_hash end # Returns the object in the form of hash # @return [Hash] Returns the object in the form of hash 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 # Outputs non-array value in the form of hash # For object, use to_hash. Otherwise, just return the value # @param [Object] value Any valid value # @return [Hash] Returns the value in the form of hash 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 end end