Class: UpdateTransactionOut

Inherits:
Object show all
Defined in:
lib/taxamo/models/updatetransactionout.rb

Overview

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 [apache.org/licenses/LICENSE-2.0](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.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ UpdateTransactionOut

Returns a new instance of UpdateTransactionOut.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/taxamo/models/updatetransactionout.rb', line 26

def initialize(attributes = {})
  return if attributes.empty?
  # Morph attribute keys into undescored rubyish style
  if attributes["transaction"]
    @transaction = Transaction.new(attributes["transaction"])
      
  end
  if attributes["tax_required_fields"]
    if (value = attributes["tax_required_fields"]).is_a?(Array)
        @tax_required_fields = value.map{ |v| TaxRequiredFields.new(v) }
      end
    end
  if attributes["storage_required_fields"]
    if (value = attributes["storage_required_fields"]).is_a?(Array)
        @storage_required_fields = value.map{ |v| StorageRequiredFields.new(v) }
      end
    end
  

end

Instance Attribute Details

#storage_required_fieldsObject

Returns the value of attribute storage_required_fields.



14
15
16
# File 'lib/taxamo/models/updatetransactionout.rb', line 14

def storage_required_fields
  @storage_required_fields
end

#tax_required_fieldsObject

Returns the value of attribute tax_required_fields.



14
15
16
# File 'lib/taxamo/models/updatetransactionout.rb', line 14

def tax_required_fields
  @tax_required_fields
end

#transactionObject

Returns the value of attribute transaction.



14
15
16
# File 'lib/taxamo/models/updatetransactionout.rb', line 14

def transaction
  @transaction
end

Class Method Details

.attribute_mapObject

:internal => :external



17
18
19
20
21
22
23
24
# File 'lib/taxamo/models/updatetransactionout.rb', line 17

def self.attribute_map
  {
    :transaction => :transaction,
    :tax_required_fields => :tax_required_fields,
    :storage_required_fields => :storage_required_fields

  }
end

Instance Method Details

#to_bodyObject



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/taxamo/models/updatetransactionout.rb', line 47

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