Sha256: 2bf78063b5208d3ec43a5a9e92b1592a1d9c9c5c76ef73f88b1df81e15997e2d
Contents?: true
Size: 978 Bytes
Versions: 28
Compression:
Stored size: 978 Bytes
Contents
module NetSuite module Records class CurrencyRate include Support::Records include Support::Fields include Support::Actions include Support::RecordRefs include Namespaces::ListAcct # https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/record/currencyrate.html actions :get, :get_list, :search fields :base_currency, :effective_date, :exchange_rate, :transaction_currency record_refs :base_currency, :transaction_currency #field :base_currency, Currency #field :transaction_currency, Currency attr_reader :internal_id attr_accessor :external_id def initialize(attributes = {}) @internal_id = attributes.delete(:internal_id) || attributes.delete(:@internal_id) @external_id = attributes.delete(:external_id) || attributes.delete(:@external_id) initialize_from_attributes_hash(attributes) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems