Sha256: b3cb478df2171fdcceb03ee65e0a844f666310c5c85559f4855dd2b819be2f06
Contents?: true
Size: 769 Bytes
Versions: 8
Compression:
Stored size: 769 Bytes
Contents
# frozen_string_literal: true require 'fortnox/api/mappers/base' module Fortnox module API module Mapper class EDIInformation < Fortnox::API::Mapper::Base KEY_MAP = { edi_global_location_number: 'EDIGlobalLocationNumber', edi_global_location_number_delivery: 'EDIGlobalLocationNumberDelivery', edi_invoice_extra1: 'EDIInvoiceExtra1', edi_invoice_extra2: 'EDIInvoiceExtra2', edi_our_electronic_reference: 'EDIOurElectronicReference', edi_your_electronic_reference: 'EDIYourElectronicReference' }.freeze JSON_ENTITY_WRAPPER = JSON_COLLECTION_WRAPPER = 'EDIInformation' end Registry.register(EDIInformation.canonical_name_sym, EDIInformation) end end end
Version data entries
8 entries across 8 versions & 1 rubygems