class Taxamo::InputTransactionUpdate
Attributes
additional_currencies[RW]
billing_country_code[RW]
buyer_credit_card_prefix[RW]
buyer_email[RW]
buyer_ip[RW]
buyer_name[RW]
buyer_tax_number[RW]
comments[RW]
control_flags[RW]
currency_code[RW]
custom_data[RW]
custom_fields[RW]
custom_id[RW]
customer_id[RW]
description[RW]
evidence[RW]
force_country_code[RW]
invoice_address[RW]
invoice_date[RW]
invoice_number[RW]
invoice_place[RW]
note[RW]
order_date[RW]
order_date_type[RW]
original_transaction_key[RW]
status[RW]
sub_account_id[RW]
supply_date[RW]
tax_country_code[RW]
tax_data[RW]
tax_deducted[RW]
transaction_lines[RW]
verification_token[RW]
Public Class Methods
attribute_map()
click to toggle source
:internal => :external
# File lib/taxamo/models/inputtransactionupdate.rb, line 18 def self.attribute_map { :order_date_type => :order_date_type, :buyer_credit_card_prefix => :buyer_credit_card_prefix, :custom_data => :custom_data, :buyer_name => :buyer_name, :invoice_date => :invoice_date, :currency_code => :currency_code, :sub_account_id => :sub_account_id, :supply_date => :supply_date, :control_flags => :control_flags, :invoice_address => :invoice_address, :verification_token => :verification_token, :note => :note, :tax_data => :tax_data, :transaction_lines => :transaction_lines, :buyer_tax_number => :buyer_tax_number, :status => :status, :custom_fields => :custom_fields, :force_country_code => :force_country_code, :invoice_number => :invoice_number, :order_date => :order_date, :customer_id => :customer_id, :comments => :comments, :buyer_ip => :buyer_ip, :buyer_email => :buyer_email, :original_transaction_key => :original_transaction_key, :billing_country_code => :billing_country_code, :custom_id => :custom_id, :additional_currencies => :additional_currencies, :invoice_place => :invoice_place, :evidence => :evidence, :description => :description, :tax_deducted => :tax_deducted, :tax_country_code => :tax_country_code } end
new(attributes = {})
click to toggle source
# File lib/taxamo/models/inputtransactionupdate.rb, line 57 def initialize(attributes = {}) return if attributes.nil? or attributes.empty? # Morph attribute keys into undescored rubyish style if attributes.key?("order_date_type") @order_date_type = attributes["order_date_type"] end if attributes.key?("buyer_credit_card_prefix") @buyer_credit_card_prefix = attributes["buyer_credit_card_prefix"] end if attributes.key?("custom_data") @custom_data = attributes["custom_data"] end if attributes.key?("buyer_name") @buyer_name = attributes["buyer_name"] end if attributes.key?("invoice_date") @invoice_date = attributes["invoice_date"] end if attributes.key?("currency_code") @currency_code = attributes["currency_code"] end if attributes.key?("sub_account_id") @sub_account_id = attributes["sub_account_id"] end if attributes.key?("supply_date") @supply_date = attributes["supply_date"] end if attributes.key?("control_flags") if (value = attributes["control_flags"]).is_a?(Array) @control_flags = value.map{ |v| ControlFlags.new(v) } end end if attributes.key?("invoice_address") @invoice_address = InvoiceAddress.new(attributes["invoice_address"]) end if attributes.key?("verification_token") @verification_token = attributes["verification_token"] end if attributes.key?("note") @note = attributes["note"] end if attributes.key?("tax_data") @tax_data = TaxDataSchema.new(attributes["tax_data"]) end if attributes.key?("transaction_lines") if (value = attributes["transaction_lines"]).is_a?(Array) @transaction_lines = value.map{ |v| InputTransactionLine.new(v) } end end if attributes.key?("buyer_tax_number") @buyer_tax_number = attributes["buyer_tax_number"] end if attributes.key?("status") @status = attributes["status"] end if attributes.key?("custom_fields") if (value = attributes["custom_fields"]).is_a?(Array) @custom_fields = value.map{ |v| CustomFields.new(v) } end end if attributes.key?("force_country_code") @force_country_code = attributes["force_country_code"] end if attributes.key?("invoice_number") @invoice_number = attributes["invoice_number"] end if attributes.key?("order_date") @order_date = attributes["order_date"] end if attributes.key?("customer_id") @customer_id = attributes["customer_id"] end if attributes.key?("comments") @comments = attributes["comments"] end if attributes.key?("buyer_ip") @buyer_ip = attributes["buyer_ip"] end if attributes.key?("buyer_email") @buyer_email = attributes["buyer_email"] end if attributes.key?("original_transaction_key") @original_transaction_key = attributes["original_transaction_key"] end if attributes.key?("billing_country_code") @billing_country_code = attributes["billing_country_code"] end if attributes.key?("custom_id") @custom_id = attributes["custom_id"] end if attributes.key?("additional_currencies") @additional_currencies = AdditionalCurrencies.new(attributes["additional_currencies"]) end if attributes.key?("invoice_place") @invoice_place = attributes["invoice_place"] end if attributes.key?("evidence") @evidence = Evidence.new(attributes["evidence"]) end if attributes.key?("description") @description = attributes["description"] end if attributes.key?("tax_deducted") @tax_deducted = attributes["tax_deducted"] end if attributes.key?("tax_country_code") @tax_country_code = attributes["tax_country_code"] end end
Public Instance Methods
to_body()
click to toggle source
# File lib/taxamo/models/inputtransactionupdate.rb, line 199 def to_body body = {} self.class.attribute_map.each_pair do |key, value| v = self.send(key) unless v.nil? if v.is_a?(Array) array = Array.new v.each do |item| if item.respond_to?("to_body".to_sym) array.push item.to_body else array.push item end end body[value] = array else if v.respond_to?("to_body".to_sym) body[value] = v.to_body else body[value] = v end end end end body end