Class: Quickeebooks::Windows::Model::NgId

Inherits:
IntuitType
  • Object
show all
Defined in:
lib/quickeebooks/windows/model/ng_id.rb

Instance Method Summary collapse

Methods included from Logging

#log

Constructor Details

#initialize(value = nil) ⇒ NgId

Returns a new instance of NgId.



9
10
11
# File 'lib/quickeebooks/windows/model/ng_id.rb', line 9

def initialize(value = nil)
  self.value = value
end

Instance Method Details

#to_iObject



13
14
15
# File 'lib/quickeebooks/windows/model/ng_id.rb', line 13

def to_i
  self.value.to_i
end

#to_sObject



17
18
19
# File 'lib/quickeebooks/windows/model/ng_id.rb', line 17

def to_s
  self.value.to_s
end