class Quickbooks::Model::BaseReference
Public Class Methods
new(value=nil, attributes={})
click to toggle source
# File lib/quickbooks/model/base_reference.rb, line 9 def initialize(value=nil, attributes={}) self.value = value attributes.each {|key, value| public_send("#{key}=", value) } end
Public Instance Methods
to_i()
click to toggle source
# File lib/quickbooks/model/base_reference.rb, line 14 def to_i self.value.to_i end
to_s()
click to toggle source
# File lib/quickbooks/model/base_reference.rb, line 18 def to_s self.value.to_s end