Sha256: 48c828d443fb1c20ef0b87926ee5f3e24af223f304920ab9b40ff5f0f4471855
Contents?: true
Size: 1001 Bytes
Versions: 8
Compression:
Stored size: 1001 Bytes
Contents
# frozen_string_literal: true require 'fortnox/api/types' module Fortnox module API module Types class EDIInformation < Types::Model STUB = {}.freeze # EDIGlobalLocationNumber Invoice address GLN for EDI attribute :edi_global_location_number, Types::Nullable::String # EDIGlobalLocationNumberDelivery Delivery address GLN for EDI attribute :edi_global_location_number_delivery, Types::Nullable::String # EDIInvoiceExtra1 Extra EDI Information attribute :edi_invoice_extra1, Types::Nullable::String # EDIInvoiceExtra2 Extra EDI Information attribute :edi_invoice_extra2, Types::Nullable::String # EDIOurElectronicReference Our electronic reference for EDI attribute :edi_our_electronic_reference, Types::Nullable::String # EDIYourElectronicReference Your electronic reference for EDI attribute :edi_your_electronic_reference, Types::Nullable::String end end end end
Version data entries
8 entries across 8 versions & 1 rubygems