diff --git a/Interfaces/Interfaces.vbproj b/Interfaces/Interfaces.vbproj index 5b3cd28d..27e501ce 100644 --- a/Interfaces/Interfaces.vbproj +++ b/Interfaces/Interfaces.vbproj @@ -245,8 +245,8 @@ True - - + + diff --git a/Interfaces/ZUGFeRDInterface.vb b/Interfaces/ZUGFeRDInterface.vb index 4562123d..2e076ec6 100644 --- a/Interfaces/ZUGFeRDInterface.vb +++ b/Interfaces/ZUGFeRDInterface.vb @@ -1,10 +1,8 @@ Imports System.IO -Imports System.Reflection Imports System.Xml Imports System.Xml.Serialization Imports DigitalData.Modules.Interfaces.Exceptions Imports DigitalData.Modules.Interfaces.PDFEmbeds -Imports DigitalData.Modules.Interfaces.Peppol Imports DigitalData.Modules.Interfaces.ZUGFeRD Imports DigitalData.Modules.Logging Imports GdPicture14 @@ -21,8 +19,8 @@ Public Class ZUGFeRDInterface Public Const ZUGFERD_SPEC_DEFAULT = "DEFAULT" Public Const ZUGFERD_SPEC_10 = "ZUGFERD_10" Public Const ZUGFERD_SPEC_2x = "ZUGFERD_2x" - Public Const PEPPOL_SPEC_3x_INVOICE = "PEPPOL_BISBILL_3x" - Public Const PEPPOL_SPEC_3x_CREDITNOTE = "PEPPOL_BISBILL_3x" + + Public Const UBL_SPEC_21 = "UBL_21" Public Const XMLSCHEMA_ZUGFERD_10 = "Version1_0" Public Const XMLSCHEMA_ZUGFERD_20 = "Version2_0" @@ -30,8 +28,8 @@ Public Class ZUGFeRDInterface Public Const XMLSCHEMA_ZUGFERD_22 = "Version2_2_FacturX" Public Const XMLSCHEMA_ZUGFERD_23 = "Version2_3_FacturX" Public Const XMLSCHEMA_ZUGFERD_233 = "Version2_3_3_FacturX" - Public Const XMLSCHEMA_PEPPOL_3017_INVOICE = "Version3017_INVOICE" - Public Const XMLSCHEMA_PEPPOL_3017_CREDITNOTE = "Version3017_CREDITNOTE" + Public Const XMLSCHEMA_UBL_21_INVOICE = "UBL2_1_INVOICE" + Public Const XMLSCHEMA_UBL_21_CREDITNOTE = "UBL2_1_CREDITNOTE" Public Const RECEIPT_TYPE_XML = "XML" Public Const RECEIPT_TYPE_PDF = "PDF" @@ -393,14 +391,14 @@ Public Class ZUGFeRDInterface If _Options.AllowPeppol_3_x_Schema Then oAllowedTypes.AddRange(New List(Of AllowedType) From { New AllowedType With { - .SchemaType = GetType(BISBilling30Invoice.InvoiceType), - .Specification = PEPPOL_SPEC_3x_INVOICE, - .XMLSchema = XMLSCHEMA_PEPPOL_3017_INVOICE + .SchemaType = GetType(UBL_21_Invoice.InvoiceType), + .Specification = UBL_SPEC_21, + .XMLSchema = XMLSCHEMA_UBL_21_INVOICE }, New AllowedType With { - .SchemaType = GetType(BISBilling30CreditNote.CreditNoteType), - .Specification = PEPPOL_SPEC_3x_CREDITNOTE, - .XMLSchema = XMLSCHEMA_PEPPOL_3017_CREDITNOTE + .SchemaType = GetType(UBL_21_CreditNote.CreditNoteType), + .Specification = UBL_SPEC_21, + .XMLSchema = XMLSCHEMA_UBL_21_CREDITNOTE } }) End If diff --git a/Interfaces/ZUGFeRDInterface/Peppol_BIS_Billing3017/CreditNoteType.vb b/Interfaces/ZUGFeRDInterface/Peppol_UBL2.1/CreditNoteType.vb similarity index 80% rename from Interfaces/ZUGFeRDInterface/Peppol_BIS_Billing3017/CreditNoteType.vb rename to Interfaces/ZUGFeRDInterface/Peppol_UBL2.1/CreditNoteType.vb index f623f018..b6226d41 100644 --- a/Interfaces/ZUGFeRDInterface/Peppol_BIS_Billing3017/CreditNoteType.vb +++ b/Interfaces/ZUGFeRDInterface/Peppol_UBL2.1/CreditNoteType.vb @@ -16,43 +16,43 @@ Imports System.Xml.Serialization ' 'Dieser Quellcode wurde automatisch generiert von xsd, Version=4.8.3928.0. ' -Namespace Peppol.BISBilling30CreditNote - +Namespace UBL_21_CreditNote + ''' - _ + Partial Public Class TransportEventType - + Private identificationIDField As IdentificationIDType - + Private occurrenceDateField As OccurrenceDateType - + Private occurrenceTimeField As OccurrenceTimeType - + Private transportEventTypeCodeField As TransportEventTypeCodeType - + Private descriptionField() As DescriptionType - + Private completionIndicatorField As CompletionIndicatorType - + Private reportedShipmentField As ShipmentType - + Private currentStatusField() As StatusType - + Private contactField() As ContactType - + Private locationField As LocationType1 - + Private signatureField As SignatureType - + Private periodField() As PeriodType - + ''' - _ + Public Property IdentificationID() As IdentificationIDType Get Return Me.identificationIDField @@ -61,9 +61,9 @@ Namespace Peppol.BISBilling30CreditNote Me.identificationIDField = value End Set End Property - + ''' - _ + Public Property OccurrenceDate() As OccurrenceDateType Get Return Me.occurrenceDateField @@ -72,9 +72,9 @@ Namespace Peppol.BISBilling30CreditNote Me.occurrenceDateField = value End Set End Property - + ''' - _ + Public Property OccurrenceTime() As OccurrenceTimeType Get Return Me.occurrenceTimeField @@ -83,9 +83,9 @@ Namespace Peppol.BISBilling30CreditNote Me.occurrenceTimeField = value End Set End Property - + ''' - _ + Public Property TransportEventTypeCode() As TransportEventTypeCodeType Get Return Me.transportEventTypeCodeField @@ -94,9 +94,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEventTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -105,9 +105,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CompletionIndicator() As CompletionIndicatorType Get Return Me.completionIndicatorField @@ -116,7 +116,7 @@ Namespace Peppol.BISBilling30CreditNote Me.completionIndicatorField = value End Set End Property - + ''' Public Property ReportedShipment() As ShipmentType Get @@ -126,9 +126,9 @@ Namespace Peppol.BISBilling30CreditNote Me.reportedShipmentField = value End Set End Property - + ''' - _ + Public Property CurrentStatus() As StatusType() Get Return Me.currentStatusField @@ -137,9 +137,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currentStatusField = value End Set End Property - + ''' - _ + Public Property Contact() As ContactType() Get Return Me.contactField @@ -148,7 +148,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contactField = value End Set End Property - + ''' Public Property Location() As LocationType1 Get @@ -158,7 +158,7 @@ Namespace Peppol.BISBilling30CreditNote Me.locationField = value End Set End Property - + ''' Public Property Signature() As SignatureType Get @@ -168,9 +168,9 @@ Namespace Peppol.BISBilling30CreditNote Me.signatureField = value End Set End Property - + ''' - _ + Public Property Period() As PeriodType() Get Return Me.periodField @@ -180,279 +180,279 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class IdentificationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IdentifierType1 Inherits IdentifierType End Class - + ''' - _ + Partial Public Class IdentifierType - + Private schemeIDField As String - + Private schemeNameField As String - + Private schemeAgencyIDField As String - + Private schemeAgencyNameField As String - + Private schemeVersionIDField As String - + Private schemeDataURIField As String - + Private schemeURIField As String - + Private valueField As String - + ''' - _ + Public Property schemeID() As String Get Return Me.schemeIDField @@ -461,9 +461,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeIDField = value End Set End Property - + ''' - _ + Public Property schemeName() As String Get Return Me.schemeNameField @@ -472,9 +472,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeNameField = value End Set End Property - + ''' - _ + Public Property schemeAgencyID() As String Get Return Me.schemeAgencyIDField @@ -483,9 +483,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeAgencyIDField = value End Set End Property - + ''' - _ + Public Property schemeAgencyName() As String Get Return Me.schemeAgencyNameField @@ -494,9 +494,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeAgencyNameField = value End Set End Property - + ''' - _ + Public Property schemeVersionID() As String Get Return Me.schemeVersionIDField @@ -505,9 +505,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeVersionIDField = value End Set End Property - + ''' - _ + Public Property schemeDataURI() As String Get Return Me.schemeDataURIField @@ -516,9 +516,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeDataURIField = value End Set End Property - + ''' - _ + Public Property schemeURI() As String Get Return Me.schemeURIField @@ -527,9 +527,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeURIField = value End Set End Property - + ''' - _ + Public Property Value() As String Get Return Me.valueField @@ -539,37 +539,37 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class BinaryObjectType - + Private formatField As String - + Private mimeCodeField As String - + Private encodingCodeField As String - + Private characterSetCodeField As String - + Private uriField As String - + Private filenameField As String - + Private valueField() As Byte - + ''' - _ + Public Property format() As String Get Return Me.formatField @@ -578,9 +578,9 @@ Namespace Peppol.BISBilling30CreditNote Me.formatField = value End Set End Property - + ''' - _ + Public Property mimeCode() As String Get Return Me.mimeCodeField @@ -589,9 +589,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mimeCodeField = value End Set End Property - + ''' - _ + Public Property encodingCode() As String Get Return Me.encodingCodeField @@ -600,9 +600,9 @@ Namespace Peppol.BISBilling30CreditNote Me.encodingCodeField = value End Set End Property - + ''' - _ + Public Property characterSetCode() As String Get Return Me.characterSetCodeField @@ -611,9 +611,9 @@ Namespace Peppol.BISBilling30CreditNote Me.characterSetCodeField = value End Set End Property - + ''' - _ + Public Property uri() As String Get Return Me.uriField @@ -622,9 +622,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uriField = value End Set End Property - + ''' - _ + Public Property filename() As String Get Return Me.filenameField @@ -633,9 +633,9 @@ Namespace Peppol.BISBilling30CreditNote Me.filenameField = value End Set End Property - + ''' - _ + Public Property Value() As Byte() Get Return Me.valueField @@ -645,124 +645,124 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class VideoType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class SoundType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class PictureType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class GraphicType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class BinaryObjectType1 Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class EmbeddedDocumentBinaryObjectType Inherits BinaryObjectType1 End Class - + ''' - _ + Partial Public Class NumericType - + Private formatField As String - + Private valueField As Decimal - + ''' - _ + Public Property format() As String Get Return Me.formatField @@ -771,9 +771,9 @@ Namespace Peppol.BISBilling30CreditNote Me.formatField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -783,576 +783,576 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RateType Inherits NumericType End Class - + ''' - _ + Partial Public Class TargetCurrencyBaseRateType Inherits RateType End Class - + ''' - _ + Partial Public Class SourceCurrencyBaseRateType Inherits RateType End Class - + ''' - _ + Partial Public Class RateType1 Inherits RateType End Class - + ''' - _ + Partial Public Class OrderableUnitFactorRateType Inherits RateType End Class - + ''' - _ + Partial Public Class CalculationRateType Inherits RateType End Class - + ''' - _ + Partial Public Class AmountRateType Inherits RateType End Class - + ''' - _ + Partial Public Class PercentType Inherits NumericType End Class - + ''' - _ + Partial Public Class TierRatePercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class TargetServicePercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class SettlementDiscountPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ReliabilityPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ProgressPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class PercentType1 Inherits PercentType End Class - + ''' - _ + Partial Public Class PenaltySurchargePercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class PaymentPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ParticipationPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class PartecipationPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class MinimumPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class MaximumPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class HumidityPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class AirFlowPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ValueType1 Inherits NumericType End Class - + ''' - _ + Partial Public Class NumericType1 Inherits NumericType End Class - + ''' - _ + Partial Public Class WeightNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class SequenceNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class ResidentOccupantsNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class ReminderSequenceNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class PackSizeNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class OrderQuantityIncrementNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class OrderIntervalDaysNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MultiplierFactorNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MinimumNumberNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MaximumPaymentInstructionsNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MaximumNumberNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MaximumCopiesNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class LineNumberNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class LineCountNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class FrozenPeriodDaysNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class CalculationSequenceNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class BudgetYearNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class AmountType - + Private currencyIDField As String - + Private currencyCodeListVersionIDField As String - + Private valueField As Decimal - + ''' - _ + Public Property currencyID() As String Get Return Me.currencyIDField @@ -1361,9 +1361,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currencyIDField = value End Set End Property - + ''' - _ + Public Property currencyCodeListVersionID() As String Get Return Me.currencyCodeListVersionIDField @@ -1372,9 +1372,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currencyCodeListVersionIDField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -1384,919 +1384,919 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AmountType1 Inherits AmountType End Class - + ''' - _ + Partial Public Class ValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TransactionCurrencyTaxAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalTaxAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalTaskAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalPaymentAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalInvoiceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalDebitAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalCreditAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalBalanceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class ThresholdAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxableAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxInclusiveAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxExclusiveAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxEnergyOnAccountAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxEnergyBalanceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxEnergyAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class SettlementDiscountAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class RoundingAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class RequiredFeeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PriceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PrepaidAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PerUnitAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PenaltyAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PayableRoundingAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PayableAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PayableAlternativeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PartyCapacityAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PaidAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MinimumAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MaximumPaidAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MaximumAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MaximumAdvertisementAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MarketValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class LowerTenderAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class LineExtensionAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class LiabilityAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class InventoryValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class InsuranceValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class InsurancePremiumAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class HigherTenderAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class FreeOnBoardValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class FeeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class FaceValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class EstimatedOverallContractAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class EstimatedAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DocumentationFeeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredStatisticsValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredForCarriageValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredCustomsValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredCarriageValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DebitLineAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CreditLineAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CorrectionUnitAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CorrectionAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CorporateStockAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class ChargeTotalAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CallExtensionAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CallBaseAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class BaseAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class BalanceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AverageSubsequentContractAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AverageAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AnnualAverageAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AmountType2 Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AllowanceTotalAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AdvertisementAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class QuantityType - + Private unitCodeField As String - + Private unitCodeListIDField As String - + Private unitCodeListAgencyIDField As String - + Private unitCodeListAgencyNameField As String - + Private valueField As Decimal - + ''' - _ + Public Property unitCode() As String Get Return Me.unitCodeField @@ -2305,9 +2305,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unitCodeField = value End Set End Property - + ''' - _ + Public Property unitCodeListID() As String Get Return Me.unitCodeListIDField @@ -2316,9 +2316,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unitCodeListIDField = value End Set End Property - + ''' - _ + Public Property unitCodeListAgencyID() As String Get Return Me.unitCodeListAgencyIDField @@ -2327,9 +2327,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unitCodeListAgencyIDField = value End Set End Property - + ''' - _ + Public Property unitCodeListAgencyName() As String Get Return Me.unitCodeListAgencyNameField @@ -2338,9 +2338,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unitCodeListAgencyNameField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -2350,840 +2350,840 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class QuantityType1 Inherits QuantityType End Class - + ''' - _ + Partial Public Class VarianceQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ValueQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalTransportHandlingUnitQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalPackagesQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalPackageQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalMeteredQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalGoodsItemQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalDeliveredQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalConsumedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TimeDeltaDaysQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ThresholdQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TargetInventoryQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ShortQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class SharesNumberQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReturnableQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class RejectedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedTenderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedForeignTenderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedElectronicTenderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class QuantityType2 Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PreviousMeterQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PerformanceValueQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PassengerQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PackQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class OversupplyQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class OutstandingQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class OperatingYearsQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class NormalTemperatureReductionQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MultipleOrderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumOrderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumInventoryQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumBackorderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumVariantQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumOrderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumOperatorQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumBackorderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class LatestMeterQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class InvoicedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class GasPressureQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ExpectedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ExpectedOperatorQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class EstimatedOverallContractQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class EstimatedConsumedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class EmployeeQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class DifferenceTemperatureReductionQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class DeliveredQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class DebitedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class CustomsTariffQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class CrewQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class CreditedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ContentUnitQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsumptionWaterQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsumptionEnergyQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsumerUnitQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsignmentQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ChildConsignmentQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ChargeableQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BatchQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BasicConsumedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BaseQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BackorderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ActualTemperatureReductionQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MeasureType - + Private unitCodeField As String - + Private unitCodeListVersionIDField As String - + Private valueField As Decimal - + ''' - _ + Public Property unitCode() As String Get Return Me.unitCodeField @@ -3192,9 +3192,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unitCodeField = value End Set End Property - + ''' - _ + Public Property unitCodeListVersionID() As String Get Return Me.unitCodeListVersionIDField @@ -3203,9 +3203,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unitCodeListVersionIDField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -3215,401 +3215,401 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MeasureType1 Inherits MeasureType End Class - + ''' - _ + Partial Public Class ValueMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class TareWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class SourceValueMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class PreEventNotificationDurationMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class PostEventNotificationDurationMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetVolumeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetTonnageMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetNetWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class MinimumMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class MeasureType2 Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class MaximumMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LongitudeMinutesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LongitudeDegreesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LoadingLengthMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LeadTimeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LatitudeMinutesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LatitudeDegreesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class GrossWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class GrossVolumeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class GrossTonnageMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class DurationMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class ComparedValueMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class ChargeableWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class BaseUnitMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class AltitudeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class IndicatorType - + Private valueField As Boolean - + ''' - _ + Public Property Value() As Boolean Get Return Me.valueField @@ -3619,897 +3619,897 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class VariantConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class UnknownPriceIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ToOrderIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ThirdPartyPayerIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class TaxIncludedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class TaxEvidenceIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class StatusAvailableIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class SplitConsignmentIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class SpecialSecurityIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class SoleProprietorshipIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ReturnableMaterialIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ReturnabilityIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class RequiredCurriculaIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class RefrigerationOnIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class RefrigeratedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PublishAwardIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PrizeIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PricingUpdateRequestIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PrepaidIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PreCarriageIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PowerIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PartialDeliveryIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OtherConditionsIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OrderableIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OptionalLineItemIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OnCarriageIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class MarkCareIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class MarkAttentionIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class LivestockIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class LegalStatusIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ItemUpdateRequestIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class IndicationIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class HumanFoodIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class HumanFoodApprovedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class HazardousRiskIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class GovernmentAgreementConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class GeneralCargoIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FullyPaidSharesIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FrozenDocumentIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FreeOfChargeIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FollowupContractIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class DangerousGoodsApprovedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CustomsImportClassifiedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CopyIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ContainerizedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ConsolidatableIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CompletionIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ChargeIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CatalogueIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CandidateReductionConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BulkCargoIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BindingOnBuyerIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BasedOnConsensusIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BalanceBroughtForwardIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BackOrderAllowedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AuctionConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AnimalFoodIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AnimalFoodApprovedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AdValoremIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AcceptedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class TextType - + Private languageIDField As String - + Private languageLocaleIDField As String - + Private valueField As String - + ''' - _ + Public Property languageID() As String Get Return Me.languageIDField @@ -4518,9 +4518,9 @@ Namespace Peppol.BISBilling30CreditNote Me.languageIDField = value End Set End Property - + ''' - _ + Public Property languageLocaleID() As String Get Return Me.languageLocaleIDField @@ -4529,9 +4529,9 @@ Namespace Peppol.BISBilling30CreditNote Me.languageLocaleIDField = value End Set End Property - + ''' - _ + Public Property Value() As String Get Return Me.valueField @@ -4541,2816 +4541,2816 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class NameType Inherits TextType End Class - + ''' - _ + Partial Public Class VesselNameType Inherits NameType End Class - + ''' - _ + Partial Public Class TechnicalNameType Inherits NameType End Class - + ''' - _ + Partial Public Class StreetNameType Inherits NameType End Class - + ''' - _ + Partial Public Class ServiceNameType Inherits NameType End Class - + ''' - _ + Partial Public Class RoamingPartnerNameType Inherits NameType End Class - + ''' - _ + Partial Public Class RetailEventNameType Inherits NameType End Class - + ''' - _ + Partial Public Class RegistrationNameType Inherits NameType End Class - + ''' - _ + Partial Public Class OtherNameType Inherits NameType End Class - + ''' - _ + Partial Public Class NameType1 Inherits NameType End Class - + ''' - _ + Partial Public Class ModelNameType Inherits NameType End Class - + ''' - _ + Partial Public Class MiddleNameType Inherits NameType End Class - + ''' - _ + Partial Public Class HolderNameType Inherits NameType End Class - + ''' - _ + Partial Public Class FirstNameType Inherits NameType End Class - + ''' - _ + Partial Public Class FileNameType Inherits NameType End Class - + ''' - _ + Partial Public Class FamilyNameType Inherits NameType End Class - + ''' - _ + Partial Public Class CitySubdivisionNameType Inherits NameType End Class - + ''' - _ + Partial Public Class CityNameType Inherits NameType End Class - + ''' - _ + Partial Public Class CategoryNameType Inherits NameType End Class - + ''' - _ + Partial Public Class BuildingNameType Inherits NameType End Class - + ''' - _ + Partial Public Class BrandNameType Inherits NameType End Class - + ''' - _ + Partial Public Class BlockNameType Inherits NameType End Class - + ''' - _ + Partial Public Class AliasNameType Inherits NameType End Class - + ''' - _ + Partial Public Class AdditionalStreetNameType Inherits NameType End Class - + ''' - _ + Partial Public Class TextType1 Inherits TextType End Class - + ''' - _ + Partial Public Class ExtensionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExtensionAgencyNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class XPathType Inherits TextType1 End Class - + ''' - _ + Partial Public Class WorkPhaseType Inherits TextType1 End Class - + ''' - _ + Partial Public Class WeightType Inherits TextType1 End Class - + ''' - _ + Partial Public Class WarrantyInformationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValueQualifierType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValidateToolVersionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValidateToolType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValidateProcessType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportationServiceDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportUserSpecialTermsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportUserRemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportServiceProviderSpecialTermsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportServiceProviderRemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TradingRestrictionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TitleType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TimingComplaintType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TimezoneOffsetType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TimeAmountType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TierRangeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TextType2 Inherits TextType1 End Class - + ''' - _ + Partial Public Class TestMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelephoneType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelefaxType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCategoryType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCallType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TechnicalCommitteeDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TaxExemptionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TariffDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SummaryDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SubscriberTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class StatusReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialTransportRequirementsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialTermsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SignatureMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ShipsRequirementsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ShippingMarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ServiceTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ServiceNumberCalledType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SealingPartyTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RoomType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RoleDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ResolutionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ResidenceTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ReplenishmentOwnerDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RejectionNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RejectReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RegulatoryDomainType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RegistrationNationalityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RegionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RankType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PurposeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ProcessReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ProcessDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PrizeDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriorityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PrintQualifierType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriceTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriceRevisionFormulaDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriceChangeReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PreviousMeterReadingMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PostboxType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PostalZoneType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PlotIdentificationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PlacardNotationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PlacardEndorsementType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PhoneNumberType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PersonalSituationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PaymentOrderReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PaymentNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PaymentDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PayerReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PayPerViewType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PasswordType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PartyTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PackingMaterialType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OutstandingReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OtherInstructionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OrganizationDepartmentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OrderableUnitType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OptionsDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OneTimeChargeTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class NoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class NegotiationDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class NameSuffixType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MovieTitleType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MonetaryScopeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MinimumValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MinimumImprovementBidType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterReadingTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterReadingCommentsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterNumberType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterConstantType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MaximumValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MarkCareType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MarkAttentionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LowTendersDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LossRiskType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LoginType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LocationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ListValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LineType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LimitationDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LegalReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LatestMeterReadingMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class KeywordType Inherits TextType1 End Class - + ''' - _ + Partial Public Class JustificationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class JustificationDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class JobTitleType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InvoicingPartyReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InstructionNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InhouseMailType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InformationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HeatingTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HaulageInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HashAlgorithmMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HandlingInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FundingProgramType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FrequencyType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ForwarderServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FloorType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FeeDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExtensionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExpressionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExemptionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExclusionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ElectronicMailType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ElectronicDeviceDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DutyType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentStatusReasonDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentHashType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DistrictType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DepartmentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DemurrageInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DeliveryInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DataSendingCapabilityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DamageRemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CustomsClearanceServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CustomerReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CurrentChargeTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CountrySubentityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CorrectionTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContractTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContractSubdivisionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContractNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConsumptionTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConsumptionLevelType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConsumersEnergyLevelType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConditionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConditionsDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConditionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CompanyLegalFormType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CommentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CodeValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CharacteristicsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ChannelType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ChangeConditionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CertificateTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CarrierServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CanonicalizationMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CandidateStatementType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CancellationNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CalculationExpressionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BuyerReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BuildingNumberType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BirthplaceNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BackorderReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AwardingCriterionDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ApprovalStatusType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AllowanceChargeReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AgencyNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AdditionalInformationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AdditionalConditionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ActivityTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AccountingCostType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AcceptedVariantsDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CodeType - + Private listIDField As String - + Private listAgencyIDField As String - + Private listAgencyNameField As String - + Private listNameField As String - + Private listVersionIDField As String - + Private nameField As String - + Private languageIDField As String - + Private listURIField As String - + Private listSchemeURIField As String - + Private valueField As String - + ''' - _ + Public Property listID() As String Get Return Me.listIDField @@ -7359,9 +7359,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listIDField = value End Set End Property - + ''' - _ + Public Property listAgencyID() As String Get Return Me.listAgencyIDField @@ -7370,9 +7370,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listAgencyIDField = value End Set End Property - + ''' - _ + Public Property listAgencyName() As String Get Return Me.listAgencyNameField @@ -7381,9 +7381,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listAgencyNameField = value End Set End Property - + ''' - _ + Public Property listName() As String Get Return Me.listNameField @@ -7392,9 +7392,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listNameField = value End Set End Property - + ''' - _ + Public Property listVersionID() As String Get Return Me.listVersionIDField @@ -7403,9 +7403,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listVersionIDField = value End Set End Property - + ''' - _ + Public Property name() As String Get Return Me.nameField @@ -7414,9 +7414,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property languageID() As String Get Return Me.languageIDField @@ -7425,9 +7425,9 @@ Namespace Peppol.BISBilling30CreditNote Me.languageIDField = value End Set End Property - + ''' - _ + Public Property listURI() As String Get Return Me.listURIField @@ -7436,9 +7436,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listURIField = value End Set End Property - + ''' - _ + Public Property listSchemeURI() As String Get Return Me.listSchemeURIField @@ -7447,9 +7447,9 @@ Namespace Peppol.BISBilling30CreditNote Me.listSchemeURIField = value End Set End Property - + ''' - _ + Public Property Value() As String Get Return Me.valueField @@ -7459,2628 +7459,2628 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CodeType1 Inherits CodeType End Class - + ''' - _ + Partial Public Class ExtensionReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class WorkPhaseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class WeightingAlgorithmCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class WeekDayCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ValidationResultCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class UtilityStatementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class UrgencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class UNDGCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportationStatusTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportServiceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportModeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportMeansTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportHandlingUnitTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportExecutionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportEventTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportEquipmentTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportEmergencyCardCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportAuthorizationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransitDirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TradeServiceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TradeItemPackingLabelingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TrackingDeviceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TimingComplaintCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TimeFrequencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ThresholdValueComparisonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TendererRoleCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TendererRequirementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TenderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TenderResultCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TenderEnvelopeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCategoryCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCallCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxExemptionReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TariffCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TariffClassCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TargetCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SupplyChainActivityTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubstitutionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubscriberTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubmissionMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubcontractingConditionsCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class StatusReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class StatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class StatementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SpecificationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SourceCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SizeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ShortageActionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ShippingPriorityLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ServiceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ServiceInformationPreferenceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SecurityClassificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SealStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SealIssuerTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RoleCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RevisionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RetailEventStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ResponseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ResolutionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ResidenceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RequestedInvoiceCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ReminderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RejectReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RejectActionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ReferenceEventCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ReceiptAdviceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class QuantityDiscrepancyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class QualityControlCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PurposeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProviderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PromotionalEventTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProfileStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcurementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcurementSubTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcessReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcedureCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PrivacyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PricingCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PriceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PriceEvaluationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PreviousMeterReadingMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PreviousCancellationReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PreferenceCriterionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PositionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PerformanceMetricTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentPurposeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentMeansCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentFrequencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentChannelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentAlternativeCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PartyTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PartPresentationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ParentDocumentTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackingCriteriaCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackagingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackageLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OwnerTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OrderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OrderResponseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OneTimeChargeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class NotificationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class NatureCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class NameCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MiscellaneousEventTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MimeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MeterReadingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MeterConstantCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MedicalFirstAidGuideCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MathematicOperatorCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MandateTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LossRiskResponsibilityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LongitudeDirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LocationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LocaleCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LineStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LifeCycleStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LatitudeDirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LatestMeterReadingMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ItemClassificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class InvoiceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class InspectionMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class InhalationToxicityZoneCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class IndustryClassificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ImportanceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class IdentificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HeatingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HazardousRegulationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HazardousCategoryCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HandlingCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class GuaranteeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class GenderCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FundingProgramCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FullnessIndicationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FreightRateClassCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FormatCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ForecastTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ForecastPurposeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FinancingInstrumentCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FeatureTacticTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExpressionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExpenseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExemptionReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExecutionRequirementCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExceptionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExceptionResolutionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EvidenceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EvaluationCriterionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EnvironmentalEmissionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EncodingCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EmergencyProceduresCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DutyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentStatusReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DispositionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DisplayTacticTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DespatchAdviceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DescriptionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DeclarationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DataSourceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CustomsStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CurrentChargeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CreditNoteTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CountrySubentityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CorrectionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CorporateRegistrationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CoordinateSystemCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ContractingSystemCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ContractTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumptionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumptionLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumersEnergyLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumerIncentiveTacticTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConstitutionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConditionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ComparisonDataSourceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ComparisonDataCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CompanyLiquidationStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CompanyLegalFormCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CommodityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CollaborationPriorityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CharacterSetCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ChannelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CertificateTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CargoTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CardTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CardChipCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CapabilityTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CalculationMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CalculationExpressionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AwardingMethodTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AwardingCriterionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AvailabilityStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ApplicationStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AllowanceChargeReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AdmissionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AdjustmentReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AddressTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AddressFormatCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ActivityTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ActionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AccountingCostCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AccountTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AccountFormatCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TimeType - + Private valueField As Date - + ''' - _ + Public Property Value() As Date Get Return Me.valueField @@ -10090,414 +10090,414 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ValidationTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class StartTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class SourceForecastIssueTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RevisionTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ResponseTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ResolutionTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RequiredDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RequestedDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RegisteredTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ReferenceTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class PaidTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class OccurrenceTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class NominationTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ManufactureTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class LatestPickupTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class LatestDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class LastRevisionTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class IssueTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class GuaranteedDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ExpiryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EstimatedDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EstimatedDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EndTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EffectiveTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EarliestPickupTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ComparisonForecastIssueTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class CallTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class AwardTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ActualPickupTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ActualDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ActualDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class DateType - + Private valueField As Date - + ''' - _ + Public Property Value() As Date Get Return Me.valueField @@ -10507,1897 +10507,1897 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ValidityStartDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ValidationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class TaxPointDateType Inherits DateType End Class - + ''' - _ + Partial Public Class SubmissionDueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class SubmissionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class StartDateType Inherits DateType End Class - + ''' - _ + Partial Public Class SourceForecastIssueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RevisionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ResponseDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ResolutionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequiredDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequestedPublicationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequestedDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequestedDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RegistrationExpirationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RegistrationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RegisteredDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ReferenceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ReceivedDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PreviousMeterReadingDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PlannedDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PaymentDueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PaidDateType Inherits DateType End Class - + ''' - _ + Partial Public Class OccurrenceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class NominationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ManufactureDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestSecurityClearanceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestProposalAcceptanceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestPickupDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestMeterReadingDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LastRevisionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class IssueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class InstallmentDueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class GuaranteedDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class FirstShipmentAvailibilityDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ExpiryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EstimatedDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EstimatedDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EndDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EffectiveDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EarliestPickupDateType Inherits DateType End Class - + ''' - _ + Partial Public Class DueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class DateType1 Inherits DateType End Class - + ''' - _ + Partial Public Class ComparisonForecastIssueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class CallDateType Inherits DateType End Class - + ''' - _ + Partial Public Class BirthDateType Inherits DateType End Class - + ''' - _ + Partial Public Class BestBeforeDateType Inherits DateType End Class - + ''' - _ + Partial Public Class AwardDateType Inherits DateType End Class - + ''' - _ + Partial Public Class AvailabilityDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ApprovalDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ActualPickupDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ActualDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ActualDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ExtensionVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtensionURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtensionAgencyURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtensionAgencyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class WebsiteURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class VesselIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class VersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class VariantIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ValidatorIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class UpperOrangeHazardPlacardIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class UUIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class URIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class UBLVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TransportationServiceDetailsURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TransportExecutionPlanReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TrainIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TrackingIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TraceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TenderEnvelopeIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SupplierAssignedAccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SuccessiveSequenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SubscriberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SpecificationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SignatureIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ShippingOrderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SerialIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SequenceNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SequenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SellerEventIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SecurityIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SchemeURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SalesOrderLineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SalesOrderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RevisedForecastLineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RequiredCustomsIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RequestForQuotationLineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ReleaseIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RegistrationNationalityIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RegistrationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ReferencedConsignmentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RailCarIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RadioCallSignIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ProfileIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ProfileExecutionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ProductTraceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PrimaryAccountNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PreviousVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PreviousJobIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PrepaidPaymentReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PerformingCarrierAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PaymentTermsDetailsURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PaymentMeansIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PaymentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ParentDocumentVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ParentDocumentLineReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ParentDocumentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OriginalJobIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OriginalContractingSystemIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OpenTenderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OntologyURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class NetworkIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class NationalityIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class MarkingIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LowerOrangeHazardPlacardIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LotNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LogoReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LocationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LoadingSequenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LicensePlateIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LanguageIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class JourneyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IssuerIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IssueNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class InstructionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class InformationURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ImmobilizationCertificateIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class HazardClassIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class FreightForwarderAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtendedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExchangeMarketIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class EndpointIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class EconomicOperatorRegistryURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class DocumentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CustomizationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CustomerAssignedAccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ContractedCarrierAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ContractFolderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsumptionReportIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsumptionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsignorAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsigneeAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CompanyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ChipApplicationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CarrierAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CV2IDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BuyerProfileURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BuyerEventIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BusinessIdentityEvidenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BusinessClassificationEvidenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BrokerAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BarcodeSymbologyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AwardingCriterionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AuctionURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AttributeIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AircraftIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AgencyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AdditionalAccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ShipmentType - + Private idField As IDType - + Private shippingPriorityLevelCodeField As ShippingPriorityLevelCodeType - + Private handlingCodeField As HandlingCodeType - + Private handlingInstructionsField() As HandlingInstructionsType - + Private informationField() As InformationType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netNetWeightMeasureField As NetNetWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private totalGoodsItemQuantityField As TotalGoodsItemQuantityType - + Private totalTransportHandlingUnitQuantityField As TotalTransportHandlingUnitQuantityType - + Private insuranceValueAmountField As InsuranceValueAmountType - + Private declaredCustomsValueAmountField As DeclaredCustomsValueAmountType - + Private declaredForCarriageValueAmountField As DeclaredForCarriageValueAmountType - + Private declaredStatisticsValueAmountField As DeclaredStatisticsValueAmountType - + Private freeOnBoardValueAmountField As FreeOnBoardValueAmountType - + Private specialInstructionsField() As SpecialInstructionsType - + Private deliveryInstructionsField() As DeliveryInstructionsType - + Private splitConsignmentIndicatorField As SplitConsignmentIndicatorType - + Private consignmentQuantityField As ConsignmentQuantityType - + Private consignmentField() As ConsignmentType - + Private goodsItemField() As GoodsItemType - + Private shipmentStageField() As ShipmentStageType - + Private deliveryField As DeliveryType - + Private transportHandlingUnitField() As TransportHandlingUnitType - + Private returnAddressField As AddressType - + Private originAddressField As AddressType - + Private firstArrivalPortLocationField As LocationType1 - + Private lastExitPortLocationField As LocationType1 - + Private exportCountryField As CountryType - + Private freightAllowanceChargeField() As AllowanceChargeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -12406,9 +12406,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ShippingPriorityLevelCode() As ShippingPriorityLevelCodeType Get Return Me.shippingPriorityLevelCodeField @@ -12417,9 +12417,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shippingPriorityLevelCodeField = value End Set End Property - + ''' - _ + Public Property HandlingCode() As HandlingCodeType Get Return Me.handlingCodeField @@ -12428,9 +12428,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingCodeField = value End Set End Property - + ''' - _ + Public Property HandlingInstructions() As HandlingInstructionsType() Get Return Me.handlingInstructionsField @@ -12439,9 +12439,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingInstructionsField = value End Set End Property - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -12450,9 +12450,9 @@ Namespace Peppol.BISBilling30CreditNote Me.informationField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -12461,9 +12461,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -12472,9 +12472,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetNetWeightMeasure() As NetNetWeightMeasureType Get Return Me.netNetWeightMeasureField @@ -12483,9 +12483,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netNetWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -12494,9 +12494,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -12505,9 +12505,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property TotalGoodsItemQuantity() As TotalGoodsItemQuantityType Get Return Me.totalGoodsItemQuantityField @@ -12516,9 +12516,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalGoodsItemQuantityField = value End Set End Property - + ''' - _ + Public Property TotalTransportHandlingUnitQuantity() As TotalTransportHandlingUnitQuantityType Get Return Me.totalTransportHandlingUnitQuantityField @@ -12527,9 +12527,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalTransportHandlingUnitQuantityField = value End Set End Property - + ''' - _ + Public Property InsuranceValueAmount() As InsuranceValueAmountType Get Return Me.insuranceValueAmountField @@ -12538,9 +12538,9 @@ Namespace Peppol.BISBilling30CreditNote Me.insuranceValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredCustomsValueAmount() As DeclaredCustomsValueAmountType Get Return Me.declaredCustomsValueAmountField @@ -12549,9 +12549,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredCustomsValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredForCarriageValueAmount() As DeclaredForCarriageValueAmountType Get Return Me.declaredForCarriageValueAmountField @@ -12560,9 +12560,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredForCarriageValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredStatisticsValueAmount() As DeclaredStatisticsValueAmountType Get Return Me.declaredStatisticsValueAmountField @@ -12571,9 +12571,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredStatisticsValueAmountField = value End Set End Property - + ''' - _ + Public Property FreeOnBoardValueAmount() As FreeOnBoardValueAmountType Get Return Me.freeOnBoardValueAmountField @@ -12582,9 +12582,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freeOnBoardValueAmountField = value End Set End Property - + ''' - _ + Public Property SpecialInstructions() As SpecialInstructionsType() Get Return Me.specialInstructionsField @@ -12593,9 +12593,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specialInstructionsField = value End Set End Property - + ''' - _ + Public Property DeliveryInstructions() As DeliveryInstructionsType() Get Return Me.deliveryInstructionsField @@ -12604,9 +12604,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryInstructionsField = value End Set End Property - + ''' - _ + Public Property SplitConsignmentIndicator() As SplitConsignmentIndicatorType Get Return Me.splitConsignmentIndicatorField @@ -12615,9 +12615,9 @@ Namespace Peppol.BISBilling30CreditNote Me.splitConsignmentIndicatorField = value End Set End Property - + ''' - _ + Public Property ConsignmentQuantity() As ConsignmentQuantityType Get Return Me.consignmentQuantityField @@ -12626,9 +12626,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consignmentQuantityField = value End Set End Property - + ''' - _ + Public Property Consignment() As ConsignmentType() Get Return Me.consignmentField @@ -12637,9 +12637,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consignmentField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -12648,9 +12648,9 @@ Namespace Peppol.BISBilling30CreditNote Me.goodsItemField = value End Set End Property - + ''' - _ + Public Property ShipmentStage() As ShipmentStageType() Get Return Me.shipmentStageField @@ -12659,7 +12659,7 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentStageField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -12669,9 +12669,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' - _ + Public Property TransportHandlingUnit() As TransportHandlingUnitType() Get Return Me.transportHandlingUnitField @@ -12680,7 +12680,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportHandlingUnitField = value End Set End Property - + ''' Public Property ReturnAddress() As AddressType Get @@ -12690,7 +12690,7 @@ Namespace Peppol.BISBilling30CreditNote Me.returnAddressField = value End Set End Property - + ''' Public Property OriginAddress() As AddressType Get @@ -12700,7 +12700,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originAddressField = value End Set End Property - + ''' Public Property FirstArrivalPortLocation() As LocationType1 Get @@ -12710,7 +12710,7 @@ Namespace Peppol.BISBilling30CreditNote Me.firstArrivalPortLocationField = value End Set End Property - + ''' Public Property LastExitPortLocation() As LocationType1 Get @@ -12720,7 +12720,7 @@ Namespace Peppol.BISBilling30CreditNote Me.lastExitPortLocationField = value End Set End Property - + ''' Public Property ExportCountry() As CountryType Get @@ -12730,9 +12730,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exportCountryField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -12742,218 +12742,218 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsignmentType - + Private idField As IDType - + Private carrierAssignedIDField As CarrierAssignedIDType - + Private consigneeAssignedIDField As ConsigneeAssignedIDType - + Private consignorAssignedIDField As ConsignorAssignedIDType - + Private freightForwarderAssignedIDField As FreightForwarderAssignedIDType - + Private brokerAssignedIDField As BrokerAssignedIDType - + Private contractedCarrierAssignedIDField As ContractedCarrierAssignedIDType - + Private performingCarrierAssignedIDField As PerformingCarrierAssignedIDType - + Private summaryDescriptionField() As SummaryDescriptionType - + Private totalInvoiceAmountField As TotalInvoiceAmountType - + Private declaredCustomsValueAmountField As DeclaredCustomsValueAmountType - + Private tariffDescriptionField() As TariffDescriptionType - + Private tariffCodeField As TariffCodeType - + Private insurancePremiumAmountField As InsurancePremiumAmountType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netNetWeightMeasureField As NetNetWeightMeasureType - + Private chargeableWeightMeasureField As ChargeableWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private loadingLengthMeasureField As LoadingLengthMeasureType - + Private remarksField() As RemarksType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private animalFoodIndicatorField As AnimalFoodIndicatorType - + Private humanFoodIndicatorField As HumanFoodIndicatorType - + Private livestockIndicatorField As LivestockIndicatorType - + Private bulkCargoIndicatorField As BulkCargoIndicatorType - + Private containerizedIndicatorField As ContainerizedIndicatorType - + Private generalCargoIndicatorField As GeneralCargoIndicatorType - + Private specialSecurityIndicatorField As SpecialSecurityIndicatorType - + Private thirdPartyPayerIndicatorField As ThirdPartyPayerIndicatorType - + Private carrierServiceInstructionsField() As CarrierServiceInstructionsType - + Private customsClearanceServiceInstructionsField() As CustomsClearanceServiceInstructionsType - + Private forwarderServiceInstructionsField() As ForwarderServiceInstructionsType - + Private specialServiceInstructionsField() As SpecialServiceInstructionsType - + Private sequenceIDField As SequenceIDType - + Private shippingPriorityLevelCodeField As ShippingPriorityLevelCodeType - + Private handlingCodeField As HandlingCodeType - + Private handlingInstructionsField() As HandlingInstructionsType - + Private informationField() As InformationType - + Private totalGoodsItemQuantityField As TotalGoodsItemQuantityType - + Private totalTransportHandlingUnitQuantityField As TotalTransportHandlingUnitQuantityType - + Private insuranceValueAmountField As InsuranceValueAmountType - + Private declaredForCarriageValueAmountField As DeclaredForCarriageValueAmountType - + Private declaredStatisticsValueAmountField As DeclaredStatisticsValueAmountType - + Private freeOnBoardValueAmountField As FreeOnBoardValueAmountType - + Private specialInstructionsField() As SpecialInstructionsType - + Private splitConsignmentIndicatorField As SplitConsignmentIndicatorType - + Private deliveryInstructionsField() As DeliveryInstructionsType - + Private consignmentQuantityField As ConsignmentQuantityType - + Private consolidatableIndicatorField As ConsolidatableIndicatorType - + Private haulageInstructionsField() As HaulageInstructionsType - + Private loadingSequenceIDField As LoadingSequenceIDType - + Private childConsignmentQuantityField As ChildConsignmentQuantityType - + Private totalPackagesQuantityField As TotalPackagesQuantityType - + Private consolidatedShipmentField() As ShipmentType - + Private customsDeclarationField() As CustomsDeclarationType - + Private requestedPickupTransportEventField As TransportEventType - + Private requestedDeliveryTransportEventField As TransportEventType - + Private plannedPickupTransportEventField As TransportEventType - + Private plannedDeliveryTransportEventField As TransportEventType - + Private statusField() As StatusType - + Private childConsignmentField() As ConsignmentType - + Private consigneePartyField As PartyType - + Private exporterPartyField As PartyType - + Private consignorPartyField As PartyType - + Private importerPartyField As PartyType - + Private carrierPartyField As PartyType - + Private freightForwarderPartyField As PartyType - + Private notifyPartyField As PartyType - + Private originalDespatchPartyField As PartyType - + Private finalDeliveryPartyField As PartyType - + Private performingCarrierPartyField As PartyType - + Private substituteCarrierPartyField As PartyType - + Private logisticsOperatorPartyField As PartyType - + Private transportAdvisorPartyField As PartyType - + Private hazardousItemNotificationPartyField As PartyType - + Private insurancePartyField As PartyType - + Private mortgageHolderPartyField As PartyType - + Private billOfLadingHolderPartyField As PartyType - + Private originalDepartureCountryField As CountryType - + Private finalDestinationCountryField As CountryType - + Private transitCountryField() As CountryType - + Private transportContractField As ContractType - + Private transportEventField() As TransportEventType - + Private originalDespatchTransportationServiceField As TransportationServiceType - + Private finalDeliveryTransportationServiceField As TransportationServiceType - + Private deliveryTermsField As DeliveryTermsType - + Private paymentTermsField As PaymentTermsType - + Private collectPaymentTermsField As PaymentTermsType - + Private disbursementPaymentTermsField As PaymentTermsType - + Private prepaidPaymentTermsField As PaymentTermsType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private extraAllowanceChargeField() As AllowanceChargeType - + Private mainCarriageShipmentStageField() As ShipmentStageType - + Private preCarriageShipmentStageField() As ShipmentStageType - + Private onCarriageShipmentStageField() As ShipmentStageType - + Private transportHandlingUnitField() As TransportHandlingUnitType - + Private firstArrivalPortLocationField As LocationType1 - + Private lastExitPortLocationField As LocationType1 - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -12962,9 +12962,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property CarrierAssignedID() As CarrierAssignedIDType Get Return Me.carrierAssignedIDField @@ -12973,9 +12973,9 @@ Namespace Peppol.BISBilling30CreditNote Me.carrierAssignedIDField = value End Set End Property - + ''' - _ + Public Property ConsigneeAssignedID() As ConsigneeAssignedIDType Get Return Me.consigneeAssignedIDField @@ -12984,9 +12984,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consigneeAssignedIDField = value End Set End Property - + ''' - _ + Public Property ConsignorAssignedID() As ConsignorAssignedIDType Get Return Me.consignorAssignedIDField @@ -12995,9 +12995,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consignorAssignedIDField = value End Set End Property - + ''' - _ + Public Property FreightForwarderAssignedID() As FreightForwarderAssignedIDType Get Return Me.freightForwarderAssignedIDField @@ -13006,9 +13006,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freightForwarderAssignedIDField = value End Set End Property - + ''' - _ + Public Property BrokerAssignedID() As BrokerAssignedIDType Get Return Me.brokerAssignedIDField @@ -13017,9 +13017,9 @@ Namespace Peppol.BISBilling30CreditNote Me.brokerAssignedIDField = value End Set End Property - + ''' - _ + Public Property ContractedCarrierAssignedID() As ContractedCarrierAssignedIDType Get Return Me.contractedCarrierAssignedIDField @@ -13028,9 +13028,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractedCarrierAssignedIDField = value End Set End Property - + ''' - _ + Public Property PerformingCarrierAssignedID() As PerformingCarrierAssignedIDType Get Return Me.performingCarrierAssignedIDField @@ -13039,9 +13039,9 @@ Namespace Peppol.BISBilling30CreditNote Me.performingCarrierAssignedIDField = value End Set End Property - + ''' - _ + Public Property SummaryDescription() As SummaryDescriptionType() Get Return Me.summaryDescriptionField @@ -13050,9 +13050,9 @@ Namespace Peppol.BISBilling30CreditNote Me.summaryDescriptionField = value End Set End Property - + ''' - _ + Public Property TotalInvoiceAmount() As TotalInvoiceAmountType Get Return Me.totalInvoiceAmountField @@ -13061,9 +13061,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalInvoiceAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredCustomsValueAmount() As DeclaredCustomsValueAmountType Get Return Me.declaredCustomsValueAmountField @@ -13072,9 +13072,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredCustomsValueAmountField = value End Set End Property - + ''' - _ + Public Property TariffDescription() As TariffDescriptionType() Get Return Me.tariffDescriptionField @@ -13083,9 +13083,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tariffDescriptionField = value End Set End Property - + ''' - _ + Public Property TariffCode() As TariffCodeType Get Return Me.tariffCodeField @@ -13094,9 +13094,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tariffCodeField = value End Set End Property - + ''' - _ + Public Property InsurancePremiumAmount() As InsurancePremiumAmountType Get Return Me.insurancePremiumAmountField @@ -13105,9 +13105,9 @@ Namespace Peppol.BISBilling30CreditNote Me.insurancePremiumAmountField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -13116,9 +13116,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -13127,9 +13127,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetNetWeightMeasure() As NetNetWeightMeasureType Get Return Me.netNetWeightMeasureField @@ -13138,9 +13138,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netNetWeightMeasureField = value End Set End Property - + ''' - _ + Public Property ChargeableWeightMeasure() As ChargeableWeightMeasureType Get Return Me.chargeableWeightMeasureField @@ -13149,9 +13149,9 @@ Namespace Peppol.BISBilling30CreditNote Me.chargeableWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -13160,9 +13160,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -13171,9 +13171,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property LoadingLengthMeasure() As LoadingLengthMeasureType Get Return Me.loadingLengthMeasureField @@ -13182,9 +13182,9 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingLengthMeasureField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -13193,9 +13193,9 @@ Namespace Peppol.BISBilling30CreditNote Me.remarksField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -13204,9 +13204,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property AnimalFoodIndicator() As AnimalFoodIndicatorType Get Return Me.animalFoodIndicatorField @@ -13215,9 +13215,9 @@ Namespace Peppol.BISBilling30CreditNote Me.animalFoodIndicatorField = value End Set End Property - + ''' - _ + Public Property HumanFoodIndicator() As HumanFoodIndicatorType Get Return Me.humanFoodIndicatorField @@ -13226,9 +13226,9 @@ Namespace Peppol.BISBilling30CreditNote Me.humanFoodIndicatorField = value End Set End Property - + ''' - _ + Public Property LivestockIndicator() As LivestockIndicatorType Get Return Me.livestockIndicatorField @@ -13237,9 +13237,9 @@ Namespace Peppol.BISBilling30CreditNote Me.livestockIndicatorField = value End Set End Property - + ''' - _ + Public Property BulkCargoIndicator() As BulkCargoIndicatorType Get Return Me.bulkCargoIndicatorField @@ -13248,9 +13248,9 @@ Namespace Peppol.BISBilling30CreditNote Me.bulkCargoIndicatorField = value End Set End Property - + ''' - _ + Public Property ContainerizedIndicator() As ContainerizedIndicatorType Get Return Me.containerizedIndicatorField @@ -13259,9 +13259,9 @@ Namespace Peppol.BISBilling30CreditNote Me.containerizedIndicatorField = value End Set End Property - + ''' - _ + Public Property GeneralCargoIndicator() As GeneralCargoIndicatorType Get Return Me.generalCargoIndicatorField @@ -13270,9 +13270,9 @@ Namespace Peppol.BISBilling30CreditNote Me.generalCargoIndicatorField = value End Set End Property - + ''' - _ + Public Property SpecialSecurityIndicator() As SpecialSecurityIndicatorType Get Return Me.specialSecurityIndicatorField @@ -13281,9 +13281,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specialSecurityIndicatorField = value End Set End Property - + ''' - _ + Public Property ThirdPartyPayerIndicator() As ThirdPartyPayerIndicatorType Get Return Me.thirdPartyPayerIndicatorField @@ -13292,9 +13292,9 @@ Namespace Peppol.BISBilling30CreditNote Me.thirdPartyPayerIndicatorField = value End Set End Property - + ''' - _ + Public Property CarrierServiceInstructions() As CarrierServiceInstructionsType() Get Return Me.carrierServiceInstructionsField @@ -13303,9 +13303,9 @@ Namespace Peppol.BISBilling30CreditNote Me.carrierServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property CustomsClearanceServiceInstructions() As CustomsClearanceServiceInstructionsType() Get Return Me.customsClearanceServiceInstructionsField @@ -13314,9 +13314,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customsClearanceServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property ForwarderServiceInstructions() As ForwarderServiceInstructionsType() Get Return Me.forwarderServiceInstructionsField @@ -13325,9 +13325,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forwarderServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property SpecialServiceInstructions() As SpecialServiceInstructionsType() Get Return Me.specialServiceInstructionsField @@ -13336,9 +13336,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specialServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property SequenceID() As SequenceIDType Get Return Me.sequenceIDField @@ -13347,9 +13347,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceIDField = value End Set End Property - + ''' - _ + Public Property ShippingPriorityLevelCode() As ShippingPriorityLevelCodeType Get Return Me.shippingPriorityLevelCodeField @@ -13358,9 +13358,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shippingPriorityLevelCodeField = value End Set End Property - + ''' - _ + Public Property HandlingCode() As HandlingCodeType Get Return Me.handlingCodeField @@ -13369,9 +13369,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingCodeField = value End Set End Property - + ''' - _ + Public Property HandlingInstructions() As HandlingInstructionsType() Get Return Me.handlingInstructionsField @@ -13380,9 +13380,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingInstructionsField = value End Set End Property - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -13391,9 +13391,9 @@ Namespace Peppol.BISBilling30CreditNote Me.informationField = value End Set End Property - + ''' - _ + Public Property TotalGoodsItemQuantity() As TotalGoodsItemQuantityType Get Return Me.totalGoodsItemQuantityField @@ -13402,9 +13402,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalGoodsItemQuantityField = value End Set End Property - + ''' - _ + Public Property TotalTransportHandlingUnitQuantity() As TotalTransportHandlingUnitQuantityType Get Return Me.totalTransportHandlingUnitQuantityField @@ -13413,9 +13413,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalTransportHandlingUnitQuantityField = value End Set End Property - + ''' - _ + Public Property InsuranceValueAmount() As InsuranceValueAmountType Get Return Me.insuranceValueAmountField @@ -13424,9 +13424,9 @@ Namespace Peppol.BISBilling30CreditNote Me.insuranceValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredForCarriageValueAmount() As DeclaredForCarriageValueAmountType Get Return Me.declaredForCarriageValueAmountField @@ -13435,9 +13435,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredForCarriageValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredStatisticsValueAmount() As DeclaredStatisticsValueAmountType Get Return Me.declaredStatisticsValueAmountField @@ -13446,9 +13446,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredStatisticsValueAmountField = value End Set End Property - + ''' - _ + Public Property FreeOnBoardValueAmount() As FreeOnBoardValueAmountType Get Return Me.freeOnBoardValueAmountField @@ -13457,9 +13457,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freeOnBoardValueAmountField = value End Set End Property - + ''' - _ + Public Property SpecialInstructions() As SpecialInstructionsType() Get Return Me.specialInstructionsField @@ -13468,9 +13468,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specialInstructionsField = value End Set End Property - + ''' - _ + Public Property SplitConsignmentIndicator() As SplitConsignmentIndicatorType Get Return Me.splitConsignmentIndicatorField @@ -13479,9 +13479,9 @@ Namespace Peppol.BISBilling30CreditNote Me.splitConsignmentIndicatorField = value End Set End Property - + ''' - _ + Public Property DeliveryInstructions() As DeliveryInstructionsType() Get Return Me.deliveryInstructionsField @@ -13490,9 +13490,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryInstructionsField = value End Set End Property - + ''' - _ + Public Property ConsignmentQuantity() As ConsignmentQuantityType Get Return Me.consignmentQuantityField @@ -13501,9 +13501,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consignmentQuantityField = value End Set End Property - + ''' - _ + Public Property ConsolidatableIndicator() As ConsolidatableIndicatorType Get Return Me.consolidatableIndicatorField @@ -13512,9 +13512,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consolidatableIndicatorField = value End Set End Property - + ''' - _ + Public Property HaulageInstructions() As HaulageInstructionsType() Get Return Me.haulageInstructionsField @@ -13523,9 +13523,9 @@ Namespace Peppol.BISBilling30CreditNote Me.haulageInstructionsField = value End Set End Property - + ''' - _ + Public Property LoadingSequenceID() As LoadingSequenceIDType Get Return Me.loadingSequenceIDField @@ -13534,9 +13534,9 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingSequenceIDField = value End Set End Property - + ''' - _ + Public Property ChildConsignmentQuantity() As ChildConsignmentQuantityType Get Return Me.childConsignmentQuantityField @@ -13545,9 +13545,9 @@ Namespace Peppol.BISBilling30CreditNote Me.childConsignmentQuantityField = value End Set End Property - + ''' - _ + Public Property TotalPackagesQuantity() As TotalPackagesQuantityType Get Return Me.totalPackagesQuantityField @@ -13556,9 +13556,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalPackagesQuantityField = value End Set End Property - + ''' - _ + Public Property ConsolidatedShipment() As ShipmentType() Get Return Me.consolidatedShipmentField @@ -13567,9 +13567,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consolidatedShipmentField = value End Set End Property - + ''' - _ + Public Property CustomsDeclaration() As CustomsDeclarationType() Get Return Me.customsDeclarationField @@ -13578,7 +13578,7 @@ Namespace Peppol.BISBilling30CreditNote Me.customsDeclarationField = value End Set End Property - + ''' Public Property RequestedPickupTransportEvent() As TransportEventType Get @@ -13588,7 +13588,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedPickupTransportEventField = value End Set End Property - + ''' Public Property RequestedDeliveryTransportEvent() As TransportEventType Get @@ -13598,7 +13598,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedDeliveryTransportEventField = value End Set End Property - + ''' Public Property PlannedPickupTransportEvent() As TransportEventType Get @@ -13608,7 +13608,7 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedPickupTransportEventField = value End Set End Property - + ''' Public Property PlannedDeliveryTransportEvent() As TransportEventType Get @@ -13618,9 +13618,9 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedDeliveryTransportEventField = value End Set End Property - + ''' - _ + Public Property Status() As StatusType() Get Return Me.statusField @@ -13629,9 +13629,9 @@ Namespace Peppol.BISBilling30CreditNote Me.statusField = value End Set End Property - + ''' - _ + Public Property ChildConsignment() As ConsignmentType() Get Return Me.childConsignmentField @@ -13640,7 +13640,7 @@ Namespace Peppol.BISBilling30CreditNote Me.childConsignmentField = value End Set End Property - + ''' Public Property ConsigneeParty() As PartyType Get @@ -13650,7 +13650,7 @@ Namespace Peppol.BISBilling30CreditNote Me.consigneePartyField = value End Set End Property - + ''' Public Property ExporterParty() As PartyType Get @@ -13660,7 +13660,7 @@ Namespace Peppol.BISBilling30CreditNote Me.exporterPartyField = value End Set End Property - + ''' Public Property ConsignorParty() As PartyType Get @@ -13670,7 +13670,7 @@ Namespace Peppol.BISBilling30CreditNote Me.consignorPartyField = value End Set End Property - + ''' Public Property ImporterParty() As PartyType Get @@ -13680,7 +13680,7 @@ Namespace Peppol.BISBilling30CreditNote Me.importerPartyField = value End Set End Property - + ''' Public Property CarrierParty() As PartyType Get @@ -13690,7 +13690,7 @@ Namespace Peppol.BISBilling30CreditNote Me.carrierPartyField = value End Set End Property - + ''' Public Property FreightForwarderParty() As PartyType Get @@ -13700,7 +13700,7 @@ Namespace Peppol.BISBilling30CreditNote Me.freightForwarderPartyField = value End Set End Property - + ''' Public Property NotifyParty() As PartyType Get @@ -13710,7 +13710,7 @@ Namespace Peppol.BISBilling30CreditNote Me.notifyPartyField = value End Set End Property - + ''' Public Property OriginalDespatchParty() As PartyType Get @@ -13720,7 +13720,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originalDespatchPartyField = value End Set End Property - + ''' Public Property FinalDeliveryParty() As PartyType Get @@ -13730,7 +13730,7 @@ Namespace Peppol.BISBilling30CreditNote Me.finalDeliveryPartyField = value End Set End Property - + ''' Public Property PerformingCarrierParty() As PartyType Get @@ -13740,7 +13740,7 @@ Namespace Peppol.BISBilling30CreditNote Me.performingCarrierPartyField = value End Set End Property - + ''' Public Property SubstituteCarrierParty() As PartyType Get @@ -13750,7 +13750,7 @@ Namespace Peppol.BISBilling30CreditNote Me.substituteCarrierPartyField = value End Set End Property - + ''' Public Property LogisticsOperatorParty() As PartyType Get @@ -13760,7 +13760,7 @@ Namespace Peppol.BISBilling30CreditNote Me.logisticsOperatorPartyField = value End Set End Property - + ''' Public Property TransportAdvisorParty() As PartyType Get @@ -13770,7 +13770,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportAdvisorPartyField = value End Set End Property - + ''' Public Property HazardousItemNotificationParty() As PartyType Get @@ -13780,7 +13780,7 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousItemNotificationPartyField = value End Set End Property - + ''' Public Property InsuranceParty() As PartyType Get @@ -13790,7 +13790,7 @@ Namespace Peppol.BISBilling30CreditNote Me.insurancePartyField = value End Set End Property - + ''' Public Property MortgageHolderParty() As PartyType Get @@ -13800,7 +13800,7 @@ Namespace Peppol.BISBilling30CreditNote Me.mortgageHolderPartyField = value End Set End Property - + ''' Public Property BillOfLadingHolderParty() As PartyType Get @@ -13810,7 +13810,7 @@ Namespace Peppol.BISBilling30CreditNote Me.billOfLadingHolderPartyField = value End Set End Property - + ''' Public Property OriginalDepartureCountry() As CountryType Get @@ -13820,7 +13820,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originalDepartureCountryField = value End Set End Property - + ''' Public Property FinalDestinationCountry() As CountryType Get @@ -13830,9 +13830,9 @@ Namespace Peppol.BISBilling30CreditNote Me.finalDestinationCountryField = value End Set End Property - + ''' - _ + Public Property TransitCountry() As CountryType() Get Return Me.transitCountryField @@ -13841,7 +13841,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transitCountryField = value End Set End Property - + ''' Public Property TransportContract() As ContractType Get @@ -13851,9 +13851,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportContractField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -13862,7 +13862,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEventField = value End Set End Property - + ''' Public Property OriginalDespatchTransportationService() As TransportationServiceType Get @@ -13872,7 +13872,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originalDespatchTransportationServiceField = value End Set End Property - + ''' Public Property FinalDeliveryTransportationService() As TransportationServiceType Get @@ -13882,7 +13882,7 @@ Namespace Peppol.BISBilling30CreditNote Me.finalDeliveryTransportationServiceField = value End Set End Property - + ''' Public Property DeliveryTerms() As DeliveryTermsType Get @@ -13892,7 +13892,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' Public Property PaymentTerms() As PaymentTermsType Get @@ -13902,7 +13902,7 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' Public Property CollectPaymentTerms() As PaymentTermsType Get @@ -13912,7 +13912,7 @@ Namespace Peppol.BISBilling30CreditNote Me.collectPaymentTermsField = value End Set End Property - + ''' Public Property DisbursementPaymentTerms() As PaymentTermsType Get @@ -13922,7 +13922,7 @@ Namespace Peppol.BISBilling30CreditNote Me.disbursementPaymentTermsField = value End Set End Property - + ''' Public Property PrepaidPaymentTerms() As PaymentTermsType Get @@ -13932,9 +13932,9 @@ Namespace Peppol.BISBilling30CreditNote Me.prepaidPaymentTermsField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -13943,9 +13943,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freightAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property ExtraAllowanceCharge() As AllowanceChargeType() Get Return Me.extraAllowanceChargeField @@ -13954,9 +13954,9 @@ Namespace Peppol.BISBilling30CreditNote Me.extraAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property MainCarriageShipmentStage() As ShipmentStageType() Get Return Me.mainCarriageShipmentStageField @@ -13965,9 +13965,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mainCarriageShipmentStageField = value End Set End Property - + ''' - _ + Public Property PreCarriageShipmentStage() As ShipmentStageType() Get Return Me.preCarriageShipmentStageField @@ -13976,9 +13976,9 @@ Namespace Peppol.BISBilling30CreditNote Me.preCarriageShipmentStageField = value End Set End Property - + ''' - _ + Public Property OnCarriageShipmentStage() As ShipmentStageType() Get Return Me.onCarriageShipmentStageField @@ -13987,9 +13987,9 @@ Namespace Peppol.BISBilling30CreditNote Me.onCarriageShipmentStageField = value End Set End Property - + ''' - _ + Public Property TransportHandlingUnit() As TransportHandlingUnitType() Get Return Me.transportHandlingUnitField @@ -13998,7 +13998,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportHandlingUnitField = value End Set End Property - + ''' Public Property FirstArrivalPortLocation() As LocationType1 Get @@ -14008,7 +14008,7 @@ Namespace Peppol.BISBilling30CreditNote Me.firstArrivalPortLocationField = value End Set End Property - + ''' Public Property LastExitPortLocation() As LocationType1 Get @@ -14019,22 +14019,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CustomsDeclarationType - + Private idField As IDType - + Private issuerPartyField As PartyType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14043,7 +14043,7 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -14054,56 +14054,56 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PartyType - + Private markCareIndicatorField As MarkCareIndicatorType - + Private markAttentionIndicatorField As MarkAttentionIndicatorType - + Private websiteURIField As WebsiteURIType - + Private logoReferenceIDField As LogoReferenceIDType - + Private endpointIDField As EndpointIDType - + Private industryClassificationCodeField As IndustryClassificationCodeType - + Private partyIdentificationField() As PartyIdentificationType - + Private partyNameField() As PartyNameType - + Private languageField As LanguageType - + Private postalAddressField As AddressType - + Private physicalLocationField As LocationType1 - + Private partyTaxSchemeField() As PartyTaxSchemeType - + Private partyLegalEntityField() As PartyLegalEntityType - + Private contactField As ContactType - + Private personField() As PersonType - + Private agentPartyField As PartyType - + Private serviceProviderPartyField() As ServiceProviderPartyType - + Private powerOfAttorneyField() As PowerOfAttorneyType - + Private financialAccountField As FinancialAccountType - + ''' - _ + Public Property MarkCareIndicator() As MarkCareIndicatorType Get Return Me.markCareIndicatorField @@ -14112,9 +14112,9 @@ Namespace Peppol.BISBilling30CreditNote Me.markCareIndicatorField = value End Set End Property - + ''' - _ + Public Property MarkAttentionIndicator() As MarkAttentionIndicatorType Get Return Me.markAttentionIndicatorField @@ -14123,9 +14123,9 @@ Namespace Peppol.BISBilling30CreditNote Me.markAttentionIndicatorField = value End Set End Property - + ''' - _ + Public Property WebsiteURI() As WebsiteURIType Get Return Me.websiteURIField @@ -14134,9 +14134,9 @@ Namespace Peppol.BISBilling30CreditNote Me.websiteURIField = value End Set End Property - + ''' - _ + Public Property LogoReferenceID() As LogoReferenceIDType Get Return Me.logoReferenceIDField @@ -14145,9 +14145,9 @@ Namespace Peppol.BISBilling30CreditNote Me.logoReferenceIDField = value End Set End Property - + ''' - _ + Public Property EndpointID() As EndpointIDType Get Return Me.endpointIDField @@ -14156,9 +14156,9 @@ Namespace Peppol.BISBilling30CreditNote Me.endpointIDField = value End Set End Property - + ''' - _ + Public Property IndustryClassificationCode() As IndustryClassificationCodeType Get Return Me.industryClassificationCodeField @@ -14167,9 +14167,9 @@ Namespace Peppol.BISBilling30CreditNote Me.industryClassificationCodeField = value End Set End Property - + ''' - _ + Public Property PartyIdentification() As PartyIdentificationType() Get Return Me.partyIdentificationField @@ -14178,9 +14178,9 @@ Namespace Peppol.BISBilling30CreditNote Me.partyIdentificationField = value End Set End Property - + ''' - _ + Public Property PartyName() As PartyNameType() Get Return Me.partyNameField @@ -14189,7 +14189,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyNameField = value End Set End Property - + ''' Public Property Language() As LanguageType Get @@ -14199,7 +14199,7 @@ Namespace Peppol.BISBilling30CreditNote Me.languageField = value End Set End Property - + ''' Public Property PostalAddress() As AddressType Get @@ -14209,7 +14209,7 @@ Namespace Peppol.BISBilling30CreditNote Me.postalAddressField = value End Set End Property - + ''' Public Property PhysicalLocation() As LocationType1 Get @@ -14219,9 +14219,9 @@ Namespace Peppol.BISBilling30CreditNote Me.physicalLocationField = value End Set End Property - + ''' - _ + Public Property PartyTaxScheme() As PartyTaxSchemeType() Get Return Me.partyTaxSchemeField @@ -14230,9 +14230,9 @@ Namespace Peppol.BISBilling30CreditNote Me.partyTaxSchemeField = value End Set End Property - + ''' - _ + Public Property PartyLegalEntity() As PartyLegalEntityType() Get Return Me.partyLegalEntityField @@ -14241,7 +14241,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyLegalEntityField = value End Set End Property - + ''' Public Property Contact() As ContactType Get @@ -14251,9 +14251,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contactField = value End Set End Property - + ''' - _ + Public Property Person() As PersonType() Get Return Me.personField @@ -14262,7 +14262,7 @@ Namespace Peppol.BISBilling30CreditNote Me.personField = value End Set End Property - + ''' Public Property AgentParty() As PartyType Get @@ -14272,9 +14272,9 @@ Namespace Peppol.BISBilling30CreditNote Me.agentPartyField = value End Set End Property - + ''' - _ + Public Property ServiceProviderParty() As ServiceProviderPartyType() Get Return Me.serviceProviderPartyField @@ -14283,9 +14283,9 @@ Namespace Peppol.BISBilling30CreditNote Me.serviceProviderPartyField = value End Set End Property - + ''' - _ + Public Property PowerOfAttorney() As PowerOfAttorneyType() Get Return Me.powerOfAttorneyField @@ -14294,7 +14294,7 @@ Namespace Peppol.BISBilling30CreditNote Me.powerOfAttorneyField = value End Set End Property - + ''' Public Property FinancialAccount() As FinancialAccountType Get @@ -14305,20 +14305,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PartyIdentificationType - + Private idField As IDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14328,20 +14328,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PartyNameType - + Private nameField As NameType1 - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -14351,24 +14351,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LanguageType - + Private idField As IDType - + Private nameField As NameType1 - + Private localeCodeField As LocaleCodeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14377,9 +14377,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -14388,9 +14388,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property LocaleCode() As LocaleCodeType Get Return Me.localeCodeField @@ -14400,72 +14400,72 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AddressType - + Private idField As IDType - + Private addressTypeCodeField As AddressTypeCodeType - + Private addressFormatCodeField As AddressFormatCodeType - + Private postboxField As PostboxType - + Private floorField As FloorType - + Private roomField As RoomType - + Private streetNameField As StreetNameType - + Private additionalStreetNameField As AdditionalStreetNameType - + Private blockNameField As BlockNameType - + Private buildingNameField As BuildingNameType - + Private buildingNumberField As BuildingNumberType - + Private inhouseMailField As InhouseMailType - + Private departmentField As DepartmentType - + Private markAttentionField As MarkAttentionType - + Private markCareField As MarkCareType - + Private plotIdentificationField As PlotIdentificationType - + Private citySubdivisionNameField As CitySubdivisionNameType - + Private cityNameField As CityNameType - + Private postalZoneField As PostalZoneType - + Private countrySubentityField As CountrySubentityType - + Private countrySubentityCodeField As CountrySubentityCodeType - + Private regionField As RegionType - + Private districtField As DistrictType - + Private timezoneOffsetField As TimezoneOffsetType - + Private addressLineField() As AddressLineType - + Private countryField As CountryType - + Private locationCoordinateField() As LocationCoordinateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14474,9 +14474,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property AddressTypeCode() As AddressTypeCodeType Get Return Me.addressTypeCodeField @@ -14485,9 +14485,9 @@ Namespace Peppol.BISBilling30CreditNote Me.addressTypeCodeField = value End Set End Property - + ''' - _ + Public Property AddressFormatCode() As AddressFormatCodeType Get Return Me.addressFormatCodeField @@ -14496,9 +14496,9 @@ Namespace Peppol.BISBilling30CreditNote Me.addressFormatCodeField = value End Set End Property - + ''' - _ + Public Property Postbox() As PostboxType Get Return Me.postboxField @@ -14507,9 +14507,9 @@ Namespace Peppol.BISBilling30CreditNote Me.postboxField = value End Set End Property - + ''' - _ + Public Property Floor() As FloorType Get Return Me.floorField @@ -14518,9 +14518,9 @@ Namespace Peppol.BISBilling30CreditNote Me.floorField = value End Set End Property - + ''' - _ + Public Property Room() As RoomType Get Return Me.roomField @@ -14529,9 +14529,9 @@ Namespace Peppol.BISBilling30CreditNote Me.roomField = value End Set End Property - + ''' - _ + Public Property StreetName() As StreetNameType Get Return Me.streetNameField @@ -14540,9 +14540,9 @@ Namespace Peppol.BISBilling30CreditNote Me.streetNameField = value End Set End Property - + ''' - _ + Public Property AdditionalStreetName() As AdditionalStreetNameType Get Return Me.additionalStreetNameField @@ -14551,9 +14551,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalStreetNameField = value End Set End Property - + ''' - _ + Public Property BlockName() As BlockNameType Get Return Me.blockNameField @@ -14562,9 +14562,9 @@ Namespace Peppol.BISBilling30CreditNote Me.blockNameField = value End Set End Property - + ''' - _ + Public Property BuildingName() As BuildingNameType Get Return Me.buildingNameField @@ -14573,9 +14573,9 @@ Namespace Peppol.BISBilling30CreditNote Me.buildingNameField = value End Set End Property - + ''' - _ + Public Property BuildingNumber() As BuildingNumberType Get Return Me.buildingNumberField @@ -14584,9 +14584,9 @@ Namespace Peppol.BISBilling30CreditNote Me.buildingNumberField = value End Set End Property - + ''' - _ + Public Property InhouseMail() As InhouseMailType Get Return Me.inhouseMailField @@ -14595,9 +14595,9 @@ Namespace Peppol.BISBilling30CreditNote Me.inhouseMailField = value End Set End Property - + ''' - _ + Public Property Department() As DepartmentType Get Return Me.departmentField @@ -14606,9 +14606,9 @@ Namespace Peppol.BISBilling30CreditNote Me.departmentField = value End Set End Property - + ''' - _ + Public Property MarkAttention() As MarkAttentionType Get Return Me.markAttentionField @@ -14617,9 +14617,9 @@ Namespace Peppol.BISBilling30CreditNote Me.markAttentionField = value End Set End Property - + ''' - _ + Public Property MarkCare() As MarkCareType Get Return Me.markCareField @@ -14628,9 +14628,9 @@ Namespace Peppol.BISBilling30CreditNote Me.markCareField = value End Set End Property - + ''' - _ + Public Property PlotIdentification() As PlotIdentificationType Get Return Me.plotIdentificationField @@ -14639,9 +14639,9 @@ Namespace Peppol.BISBilling30CreditNote Me.plotIdentificationField = value End Set End Property - + ''' - _ + Public Property CitySubdivisionName() As CitySubdivisionNameType Get Return Me.citySubdivisionNameField @@ -14650,9 +14650,9 @@ Namespace Peppol.BISBilling30CreditNote Me.citySubdivisionNameField = value End Set End Property - + ''' - _ + Public Property CityName() As CityNameType Get Return Me.cityNameField @@ -14661,9 +14661,9 @@ Namespace Peppol.BISBilling30CreditNote Me.cityNameField = value End Set End Property - + ''' - _ + Public Property PostalZone() As PostalZoneType Get Return Me.postalZoneField @@ -14672,9 +14672,9 @@ Namespace Peppol.BISBilling30CreditNote Me.postalZoneField = value End Set End Property - + ''' - _ + Public Property CountrySubentity() As CountrySubentityType Get Return Me.countrySubentityField @@ -14683,9 +14683,9 @@ Namespace Peppol.BISBilling30CreditNote Me.countrySubentityField = value End Set End Property - + ''' - _ + Public Property CountrySubentityCode() As CountrySubentityCodeType Get Return Me.countrySubentityCodeField @@ -14694,9 +14694,9 @@ Namespace Peppol.BISBilling30CreditNote Me.countrySubentityCodeField = value End Set End Property - + ''' - _ + Public Property Region() As RegionType Get Return Me.regionField @@ -14705,9 +14705,9 @@ Namespace Peppol.BISBilling30CreditNote Me.regionField = value End Set End Property - + ''' - _ + Public Property District() As DistrictType Get Return Me.districtField @@ -14716,9 +14716,9 @@ Namespace Peppol.BISBilling30CreditNote Me.districtField = value End Set End Property - + ''' - _ + Public Property TimezoneOffset() As TimezoneOffsetType Get Return Me.timezoneOffsetField @@ -14727,9 +14727,9 @@ Namespace Peppol.BISBilling30CreditNote Me.timezoneOffsetField = value End Set End Property - + ''' - _ + Public Property AddressLine() As AddressLineType() Get Return Me.addressLineField @@ -14738,7 +14738,7 @@ Namespace Peppol.BISBilling30CreditNote Me.addressLineField = value End Set End Property - + ''' Public Property Country() As CountryType Get @@ -14748,9 +14748,9 @@ Namespace Peppol.BISBilling30CreditNote Me.countryField = value End Set End Property - + ''' - _ + Public Property LocationCoordinate() As LocationCoordinateType() Get Return Me.locationCoordinateField @@ -14760,20 +14760,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AddressLineType - + Private lineField As LineType - + ''' - _ + Public Property Line() As LineType Get Return Me.lineField @@ -14783,22 +14783,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CountryType - + Private identificationCodeField As IdentificationCodeType - + Private nameField As NameType1 - + ''' - _ + Public Property IdentificationCode() As IdentificationCodeType Get Return Me.identificationCodeField @@ -14807,9 +14807,9 @@ Namespace Peppol.BISBilling30CreditNote Me.identificationCodeField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -14819,34 +14819,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LocationCoordinateType - + Private coordinateSystemCodeField As CoordinateSystemCodeType - + Private latitudeDegreesMeasureField As LatitudeDegreesMeasureType - + Private latitudeMinutesMeasureField As LatitudeMinutesMeasureType - + Private latitudeDirectionCodeField As LatitudeDirectionCodeType - + Private longitudeDegreesMeasureField As LongitudeDegreesMeasureType - + Private longitudeMinutesMeasureField As LongitudeMinutesMeasureType - + Private longitudeDirectionCodeField As LongitudeDirectionCodeType - + Private altitudeMeasureField As AltitudeMeasureType - + ''' - _ + Public Property CoordinateSystemCode() As CoordinateSystemCodeType Get Return Me.coordinateSystemCodeField @@ -14855,9 +14855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.coordinateSystemCodeField = value End Set End Property - + ''' - _ + Public Property LatitudeDegreesMeasure() As LatitudeDegreesMeasureType Get Return Me.latitudeDegreesMeasureField @@ -14866,9 +14866,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latitudeDegreesMeasureField = value End Set End Property - + ''' - _ + Public Property LatitudeMinutesMeasure() As LatitudeMinutesMeasureType Get Return Me.latitudeMinutesMeasureField @@ -14877,9 +14877,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latitudeMinutesMeasureField = value End Set End Property - + ''' - _ + Public Property LatitudeDirectionCode() As LatitudeDirectionCodeType Get Return Me.latitudeDirectionCodeField @@ -14888,9 +14888,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latitudeDirectionCodeField = value End Set End Property - + ''' - _ + Public Property LongitudeDegreesMeasure() As LongitudeDegreesMeasureType Get Return Me.longitudeDegreesMeasureField @@ -14899,9 +14899,9 @@ Namespace Peppol.BISBilling30CreditNote Me.longitudeDegreesMeasureField = value End Set End Property - + ''' - _ + Public Property LongitudeMinutesMeasure() As LongitudeMinutesMeasureType Get Return Me.longitudeMinutesMeasureField @@ -14910,9 +14910,9 @@ Namespace Peppol.BISBilling30CreditNote Me.longitudeMinutesMeasureField = value End Set End Property - + ''' - _ + Public Property LongitudeDirectionCode() As LongitudeDirectionCodeType Get Return Me.longitudeDirectionCodeField @@ -14921,9 +14921,9 @@ Namespace Peppol.BISBilling30CreditNote Me.longitudeDirectionCodeField = value End Set End Property - + ''' - _ + Public Property AltitudeMeasure() As AltitudeMeasureType Get Return Me.altitudeMeasureField @@ -14933,42 +14933,42 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LocationType1 - + Private idField As IDType - + Private descriptionField() As DescriptionType - + Private conditionsField() As ConditionsType - + Private countrySubentityField As CountrySubentityType - + Private countrySubentityCodeField As CountrySubentityCodeType - + Private locationTypeCodeField As LocationTypeCodeType - + Private informationURIField As InformationURIType - + Private nameField As NameType1 - + Private validityPeriodField() As PeriodType - + Private addressField As AddressType - + Private subsidiaryLocationField() As LocationType1 - + Private locationCoordinateField() As LocationCoordinateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14977,9 +14977,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -14988,9 +14988,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property Conditions() As ConditionsType() Get Return Me.conditionsField @@ -14999,9 +14999,9 @@ Namespace Peppol.BISBilling30CreditNote Me.conditionsField = value End Set End Property - + ''' - _ + Public Property CountrySubentity() As CountrySubentityType Get Return Me.countrySubentityField @@ -15010,9 +15010,9 @@ Namespace Peppol.BISBilling30CreditNote Me.countrySubentityField = value End Set End Property - + ''' - _ + Public Property CountrySubentityCode() As CountrySubentityCodeType Get Return Me.countrySubentityCodeField @@ -15021,9 +15021,9 @@ Namespace Peppol.BISBilling30CreditNote Me.countrySubentityCodeField = value End Set End Property - + ''' - _ + Public Property LocationTypeCode() As LocationTypeCodeType Get Return Me.locationTypeCodeField @@ -15032,9 +15032,9 @@ Namespace Peppol.BISBilling30CreditNote Me.locationTypeCodeField = value End Set End Property - + ''' - _ + Public Property InformationURI() As InformationURIType Get Return Me.informationURIField @@ -15043,9 +15043,9 @@ Namespace Peppol.BISBilling30CreditNote Me.informationURIField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15054,9 +15054,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property ValidityPeriod() As PeriodType() Get Return Me.validityPeriodField @@ -15065,7 +15065,7 @@ Namespace Peppol.BISBilling30CreditNote Me.validityPeriodField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -15075,9 +15075,9 @@ Namespace Peppol.BISBilling30CreditNote Me.addressField = value End Set End Property - + ''' - _ + Public Property SubsidiaryLocation() As LocationType1() Get Return Me.subsidiaryLocationField @@ -15086,9 +15086,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subsidiaryLocationField = value End Set End Property - + ''' - _ + Public Property LocationCoordinate() As LocationCoordinateType() Get Return Me.locationCoordinateField @@ -15098,32 +15098,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PeriodType - + Private startDateField As StartDateType - + Private startTimeField As StartTimeType - + Private endDateField As EndDateType - + Private endTimeField As EndTimeType - + Private durationMeasureField As DurationMeasureType - + Private descriptionCodeField() As DescriptionCodeType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property StartDate() As StartDateType Get Return Me.startDateField @@ -15132,9 +15132,9 @@ Namespace Peppol.BISBilling30CreditNote Me.startDateField = value End Set End Property - + ''' - _ + Public Property StartTime() As StartTimeType Get Return Me.startTimeField @@ -15143,9 +15143,9 @@ Namespace Peppol.BISBilling30CreditNote Me.startTimeField = value End Set End Property - + ''' - _ + Public Property EndDate() As EndDateType Get Return Me.endDateField @@ -15154,9 +15154,9 @@ Namespace Peppol.BISBilling30CreditNote Me.endDateField = value End Set End Property - + ''' - _ + Public Property EndTime() As EndTimeType Get Return Me.endTimeField @@ -15165,9 +15165,9 @@ Namespace Peppol.BISBilling30CreditNote Me.endTimeField = value End Set End Property - + ''' - _ + Public Property DurationMeasure() As DurationMeasureType Get Return Me.durationMeasureField @@ -15176,9 +15176,9 @@ Namespace Peppol.BISBilling30CreditNote Me.durationMeasureField = value End Set End Property - + ''' - _ + Public Property DescriptionCode() As DescriptionCodeType() Get Return Me.descriptionCodeField @@ -15187,9 +15187,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -15199,32 +15199,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PartyTaxSchemeType - + Private registrationNameField As RegistrationNameType - + Private companyIDField As CompanyIDType - + Private taxLevelCodeField As TaxLevelCodeType - + Private exemptionReasonCodeField As ExemptionReasonCodeType - + Private exemptionReasonField() As ExemptionReasonType - + Private registrationAddressField As AddressType - + Private taxSchemeField As TaxSchemeType - + ''' - _ + Public Property RegistrationName() As RegistrationNameType Get Return Me.registrationNameField @@ -15233,9 +15233,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationNameField = value End Set End Property - + ''' - _ + Public Property CompanyID() As CompanyIDType Get Return Me.companyIDField @@ -15244,9 +15244,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyIDField = value End Set End Property - + ''' - _ + Public Property TaxLevelCode() As TaxLevelCodeType Get Return Me.taxLevelCodeField @@ -15255,9 +15255,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxLevelCodeField = value End Set End Property - + ''' - _ + Public Property ExemptionReasonCode() As ExemptionReasonCodeType Get Return Me.exemptionReasonCodeField @@ -15266,9 +15266,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exemptionReasonCodeField = value End Set End Property - + ''' - _ + Public Property ExemptionReason() As ExemptionReasonType() Get Return Me.exemptionReasonField @@ -15277,7 +15277,7 @@ Namespace Peppol.BISBilling30CreditNote Me.exemptionReasonField = value End Set End Property - + ''' Public Property RegistrationAddress() As AddressType Get @@ -15287,7 +15287,7 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationAddressField = value End Set End Property - + ''' Public Property TaxScheme() As TaxSchemeType Get @@ -15298,28 +15298,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TaxSchemeType - + Private idField As IDType - + Private nameField As NameType1 - + Private taxTypeCodeField As TaxTypeCodeType - + Private currencyCodeField As CurrencyCodeType - + Private jurisdictionRegionAddressField() As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15328,9 +15328,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15339,9 +15339,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property TaxTypeCode() As TaxTypeCodeType Get Return Me.taxTypeCodeField @@ -15350,9 +15350,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTypeCodeField = value End Set End Property - + ''' - _ + Public Property CurrencyCode() As CurrencyCodeType Get Return Me.currencyCodeField @@ -15361,9 +15361,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currencyCodeField = value End Set End Property - + ''' - _ + Public Property JurisdictionRegionAddress() As AddressType() Get Return Me.jurisdictionRegionAddressField @@ -15373,46 +15373,46 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PartyLegalEntityType - + Private registrationNameField As RegistrationNameType - + Private companyIDField As CompanyIDType - + Private registrationDateField As RegistrationDateType - + Private registrationExpirationDateField As RegistrationExpirationDateType - + Private companyLegalFormCodeField As CompanyLegalFormCodeType - + Private companyLegalFormField As CompanyLegalFormType - + Private soleProprietorshipIndicatorField As SoleProprietorshipIndicatorType - + Private companyLiquidationStatusCodeField As CompanyLiquidationStatusCodeType - + Private corporateStockAmountField As CorporateStockAmountType - + Private fullyPaidSharesIndicatorField As FullyPaidSharesIndicatorType - + Private registrationAddressField As AddressType - + Private corporateRegistrationSchemeField As CorporateRegistrationSchemeType - + Private headOfficePartyField As PartyType - + Private shareholderPartyField() As ShareholderPartyType - + ''' - _ + Public Property RegistrationName() As RegistrationNameType Get Return Me.registrationNameField @@ -15421,9 +15421,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationNameField = value End Set End Property - + ''' - _ + Public Property CompanyID() As CompanyIDType Get Return Me.companyIDField @@ -15432,9 +15432,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyIDField = value End Set End Property - + ''' - _ + Public Property RegistrationDate() As RegistrationDateType Get Return Me.registrationDateField @@ -15443,9 +15443,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationDateField = value End Set End Property - + ''' - _ + Public Property RegistrationExpirationDate() As RegistrationExpirationDateType Get Return Me.registrationExpirationDateField @@ -15454,9 +15454,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationExpirationDateField = value End Set End Property - + ''' - _ + Public Property CompanyLegalFormCode() As CompanyLegalFormCodeType Get Return Me.companyLegalFormCodeField @@ -15465,9 +15465,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyLegalFormCodeField = value End Set End Property - + ''' - _ + Public Property CompanyLegalForm() As CompanyLegalFormType Get Return Me.companyLegalFormField @@ -15476,9 +15476,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyLegalFormField = value End Set End Property - + ''' - _ + Public Property SoleProprietorshipIndicator() As SoleProprietorshipIndicatorType Get Return Me.soleProprietorshipIndicatorField @@ -15487,9 +15487,9 @@ Namespace Peppol.BISBilling30CreditNote Me.soleProprietorshipIndicatorField = value End Set End Property - + ''' - _ + Public Property CompanyLiquidationStatusCode() As CompanyLiquidationStatusCodeType Get Return Me.companyLiquidationStatusCodeField @@ -15498,9 +15498,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyLiquidationStatusCodeField = value End Set End Property - + ''' - _ + Public Property CorporateStockAmount() As CorporateStockAmountType Get Return Me.corporateStockAmountField @@ -15509,9 +15509,9 @@ Namespace Peppol.BISBilling30CreditNote Me.corporateStockAmountField = value End Set End Property - + ''' - _ + Public Property FullyPaidSharesIndicator() As FullyPaidSharesIndicatorType Get Return Me.fullyPaidSharesIndicatorField @@ -15520,7 +15520,7 @@ Namespace Peppol.BISBilling30CreditNote Me.fullyPaidSharesIndicatorField = value End Set End Property - + ''' Public Property RegistrationAddress() As AddressType Get @@ -15530,7 +15530,7 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationAddressField = value End Set End Property - + ''' Public Property CorporateRegistrationScheme() As CorporateRegistrationSchemeType Get @@ -15540,7 +15540,7 @@ Namespace Peppol.BISBilling30CreditNote Me.corporateRegistrationSchemeField = value End Set End Property - + ''' Public Property HeadOfficeParty() As PartyType Get @@ -15550,9 +15550,9 @@ Namespace Peppol.BISBilling30CreditNote Me.headOfficePartyField = value End Set End Property - + ''' - _ + Public Property ShareholderParty() As ShareholderPartyType() Get Return Me.shareholderPartyField @@ -15562,26 +15562,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CorporateRegistrationSchemeType - + Private idField As IDType - + Private nameField As NameType1 - + Private corporateRegistrationTypeCodeField As CorporateRegistrationTypeCodeType - + Private jurisdictionRegionAddressField() As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15590,9 +15590,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15601,9 +15601,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property CorporateRegistrationTypeCode() As CorporateRegistrationTypeCodeType Get Return Me.corporateRegistrationTypeCodeField @@ -15612,9 +15612,9 @@ Namespace Peppol.BISBilling30CreditNote Me.corporateRegistrationTypeCodeField = value End Set End Property - + ''' - _ + Public Property JurisdictionRegionAddress() As AddressType() Get Return Me.jurisdictionRegionAddressField @@ -15624,22 +15624,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ShareholderPartyType - + Private partecipationPercentField As PartecipationPercentType - + Private partyField As PartyType - + ''' - _ + Public Property PartecipationPercent() As PartecipationPercentType Get Return Me.partecipationPercentField @@ -15648,7 +15648,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partecipationPercentField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -15659,32 +15659,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContactType - + Private idField As IDType - + Private nameField As NameType1 - + Private telephoneField As TelephoneType - + Private telefaxField As TelefaxType - + Private electronicMailField As ElectronicMailType - + Private noteField() As NoteType - + Private otherCommunicationField() As CommunicationType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15693,9 +15693,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15704,9 +15704,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property Telephone() As TelephoneType Get Return Me.telephoneField @@ -15715,9 +15715,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telephoneField = value End Set End Property - + ''' - _ + Public Property Telefax() As TelefaxType Get Return Me.telefaxField @@ -15726,9 +15726,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telefaxField = value End Set End Property - + ''' - _ + Public Property ElectronicMail() As ElectronicMailType Get Return Me.electronicMailField @@ -15737,9 +15737,9 @@ Namespace Peppol.BISBilling30CreditNote Me.electronicMailField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -15748,9 +15748,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property OtherCommunication() As CommunicationType() Get Return Me.otherCommunicationField @@ -15760,24 +15760,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CommunicationType - + Private channelCodeField As ChannelCodeType - + Private channelField As ChannelType - + Private valueField As ValueType - + ''' - _ + Public Property ChannelCode() As ChannelCodeType Get Return Me.channelCodeField @@ -15786,9 +15786,9 @@ Namespace Peppol.BISBilling30CreditNote Me.channelCodeField = value End Set End Property - + ''' - _ + Public Property Channel() As ChannelType Get Return Me.channelField @@ -15797,9 +15797,9 @@ Namespace Peppol.BISBilling30CreditNote Me.channelField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -15809,52 +15809,52 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PersonType - + Private idField As IDType - + Private firstNameField As FirstNameType - + Private familyNameField As FamilyNameType - + Private titleField As TitleType - + Private middleNameField As MiddleNameType - + Private otherNameField As OtherNameType - + Private nameSuffixField As NameSuffixType - + Private jobTitleField As JobTitleType - + Private nationalityIDField As NationalityIDType - + Private genderCodeField As GenderCodeType - + Private birthDateField As BirthDateType - + Private birthplaceNameField As BirthplaceNameType - + Private organizationDepartmentField As OrganizationDepartmentType - + Private contactField As ContactType - + Private financialAccountField As FinancialAccountType - + Private identityDocumentReferenceField() As DocumentReferenceType - + Private residenceAddressField As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15863,9 +15863,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property FirstName() As FirstNameType Get Return Me.firstNameField @@ -15874,9 +15874,9 @@ Namespace Peppol.BISBilling30CreditNote Me.firstNameField = value End Set End Property - + ''' - _ + Public Property FamilyName() As FamilyNameType Get Return Me.familyNameField @@ -15885,9 +15885,9 @@ Namespace Peppol.BISBilling30CreditNote Me.familyNameField = value End Set End Property - + ''' - _ + Public Property Title() As TitleType Get Return Me.titleField @@ -15896,9 +15896,9 @@ Namespace Peppol.BISBilling30CreditNote Me.titleField = value End Set End Property - + ''' - _ + Public Property MiddleName() As MiddleNameType Get Return Me.middleNameField @@ -15907,9 +15907,9 @@ Namespace Peppol.BISBilling30CreditNote Me.middleNameField = value End Set End Property - + ''' - _ + Public Property OtherName() As OtherNameType Get Return Me.otherNameField @@ -15918,9 +15918,9 @@ Namespace Peppol.BISBilling30CreditNote Me.otherNameField = value End Set End Property - + ''' - _ + Public Property NameSuffix() As NameSuffixType Get Return Me.nameSuffixField @@ -15929,9 +15929,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameSuffixField = value End Set End Property - + ''' - _ + Public Property JobTitle() As JobTitleType Get Return Me.jobTitleField @@ -15940,9 +15940,9 @@ Namespace Peppol.BISBilling30CreditNote Me.jobTitleField = value End Set End Property - + ''' - _ + Public Property NationalityID() As NationalityIDType Get Return Me.nationalityIDField @@ -15951,9 +15951,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nationalityIDField = value End Set End Property - + ''' - _ + Public Property GenderCode() As GenderCodeType Get Return Me.genderCodeField @@ -15962,9 +15962,9 @@ Namespace Peppol.BISBilling30CreditNote Me.genderCodeField = value End Set End Property - + ''' - _ + Public Property BirthDate() As BirthDateType Get Return Me.birthDateField @@ -15973,9 +15973,9 @@ Namespace Peppol.BISBilling30CreditNote Me.birthDateField = value End Set End Property - + ''' - _ + Public Property BirthplaceName() As BirthplaceNameType Get Return Me.birthplaceNameField @@ -15984,9 +15984,9 @@ Namespace Peppol.BISBilling30CreditNote Me.birthplaceNameField = value End Set End Property - + ''' - _ + Public Property OrganizationDepartment() As OrganizationDepartmentType Get Return Me.organizationDepartmentField @@ -15995,7 +15995,7 @@ Namespace Peppol.BISBilling30CreditNote Me.organizationDepartmentField = value End Set End Property - + ''' Public Property Contact() As ContactType Get @@ -16005,7 +16005,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contactField = value End Set End Property - + ''' Public Property FinancialAccount() As FinancialAccountType Get @@ -16015,9 +16015,9 @@ Namespace Peppol.BISBilling30CreditNote Me.financialAccountField = value End Set End Property - + ''' - _ + Public Property IdentityDocumentReference() As DocumentReferenceType() Get Return Me.identityDocumentReferenceField @@ -16026,7 +16026,7 @@ Namespace Peppol.BISBilling30CreditNote Me.identityDocumentReferenceField = value End Set End Property - + ''' Public Property ResidenceAddress() As AddressType Get @@ -16037,36 +16037,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class FinancialAccountType - + Private idField As IDType - + Private nameField As NameType1 - + Private aliasNameField As AliasNameType - + Private accountTypeCodeField As AccountTypeCodeType - + Private accountFormatCodeField As AccountFormatCodeType - + Private currencyCodeField As CurrencyCodeType - + Private paymentNoteField() As PaymentNoteType - + Private financialInstitutionBranchField As BranchType - + Private countryField As CountryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16075,9 +16075,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -16086,9 +16086,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property AliasName() As AliasNameType Get Return Me.aliasNameField @@ -16097,9 +16097,9 @@ Namespace Peppol.BISBilling30CreditNote Me.aliasNameField = value End Set End Property - + ''' - _ + Public Property AccountTypeCode() As AccountTypeCodeType Get Return Me.accountTypeCodeField @@ -16108,9 +16108,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountTypeCodeField = value End Set End Property - + ''' - _ + Public Property AccountFormatCode() As AccountFormatCodeType Get Return Me.accountFormatCodeField @@ -16119,9 +16119,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountFormatCodeField = value End Set End Property - + ''' - _ + Public Property CurrencyCode() As CurrencyCodeType Get Return Me.currencyCodeField @@ -16130,9 +16130,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currencyCodeField = value End Set End Property - + ''' - _ + Public Property PaymentNote() As PaymentNoteType() Get Return Me.paymentNoteField @@ -16141,7 +16141,7 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentNoteField = value End Set End Property - + ''' Public Property FinancialInstitutionBranch() As BranchType Get @@ -16151,7 +16151,7 @@ Namespace Peppol.BISBilling30CreditNote Me.financialInstitutionBranchField = value End Set End Property - + ''' Public Property Country() As CountryType Get @@ -16162,26 +16162,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class BranchType - + Private idField As IDType - + Private nameField As NameType1 - + Private financialInstitutionField As FinancialInstitutionType - + Private addressField As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16190,9 +16190,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -16201,7 +16201,7 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' Public Property FinancialInstitution() As FinancialInstitutionType Get @@ -16211,7 +16211,7 @@ Namespace Peppol.BISBilling30CreditNote Me.financialInstitutionField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -16222,24 +16222,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class FinancialInstitutionType - + Private idField As IDType - + Private nameField As NameType1 - + Private addressField As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16248,9 +16248,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -16259,7 +16259,7 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -16270,52 +16270,52 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DocumentReferenceType - + Private idField As IDType - + Private copyIndicatorField As CopyIndicatorType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private documentTypeCodeField As DocumentTypeCodeType - + Private documentTypeField As DocumentTypeType - + Private xPathField() As XPathType - + Private languageIDField As LanguageIDType - + Private localeCodeField As LocaleCodeType - + Private versionIDField As VersionIDType - + Private documentStatusCodeField As DocumentStatusCodeType - + Private documentDescriptionField() As DocumentDescriptionType - + Private attachmentField As AttachmentType - + Private validityPeriodField As PeriodType - + Private issuerPartyField As PartyType - + Private resultOfVerificationField As ResultOfVerificationType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16324,9 +16324,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property CopyIndicator() As CopyIndicatorType Get Return Me.copyIndicatorField @@ -16335,9 +16335,9 @@ Namespace Peppol.BISBilling30CreditNote Me.copyIndicatorField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -16346,9 +16346,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -16357,9 +16357,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -16368,9 +16368,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property DocumentTypeCode() As DocumentTypeCodeType Get Return Me.documentTypeCodeField @@ -16379,9 +16379,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentTypeCodeField = value End Set End Property - + ''' - _ + Public Property DocumentType() As DocumentTypeType Get Return Me.documentTypeField @@ -16390,9 +16390,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentTypeField = value End Set End Property - + ''' - _ + Public Property XPath() As XPathType() Get Return Me.xPathField @@ -16401,9 +16401,9 @@ Namespace Peppol.BISBilling30CreditNote Me.xPathField = value End Set End Property - + ''' - _ + Public Property LanguageID() As LanguageIDType Get Return Me.languageIDField @@ -16412,9 +16412,9 @@ Namespace Peppol.BISBilling30CreditNote Me.languageIDField = value End Set End Property - + ''' - _ + Public Property LocaleCode() As LocaleCodeType Get Return Me.localeCodeField @@ -16423,9 +16423,9 @@ Namespace Peppol.BISBilling30CreditNote Me.localeCodeField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -16434,9 +16434,9 @@ Namespace Peppol.BISBilling30CreditNote Me.versionIDField = value End Set End Property - + ''' - _ + Public Property DocumentStatusCode() As DocumentStatusCodeType Get Return Me.documentStatusCodeField @@ -16445,9 +16445,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentStatusCodeField = value End Set End Property - + ''' - _ + Public Property DocumentDescription() As DocumentDescriptionType() Get Return Me.documentDescriptionField @@ -16456,7 +16456,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentDescriptionField = value End Set End Property - + ''' Public Property Attachment() As AttachmentType Get @@ -16466,7 +16466,7 @@ Namespace Peppol.BISBilling30CreditNote Me.attachmentField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -16476,7 +16476,7 @@ Namespace Peppol.BISBilling30CreditNote Me.validityPeriodField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -16486,7 +16486,7 @@ Namespace Peppol.BISBilling30CreditNote Me.issuerPartyField = value End Set End Property - + ''' Public Property ResultOfVerification() As ResultOfVerificationType Get @@ -16497,22 +16497,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AttachmentType - + Private embeddedDocumentBinaryObjectField As EmbeddedDocumentBinaryObjectType - + Private externalReferenceField As ExternalReferenceType - + ''' - _ + Public Property EmbeddedDocumentBinaryObject() As EmbeddedDocumentBinaryObjectType Get Return Me.embeddedDocumentBinaryObjectField @@ -16521,7 +16521,7 @@ Namespace Peppol.BISBilling30CreditNote Me.embeddedDocumentBinaryObjectField = value End Set End Property - + ''' Public Property ExternalReference() As ExternalReferenceType Get @@ -16532,40 +16532,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ExternalReferenceType - + Private uRIField As URIType - + Private documentHashField As DocumentHashType - + Private hashAlgorithmMethodField As HashAlgorithmMethodType - + Private expiryDateField As ExpiryDateType - + Private expiryTimeField As ExpiryTimeType - + Private mimeCodeField As MimeCodeType - + Private formatCodeField As FormatCodeType - + Private encodingCodeField As EncodingCodeType - + Private characterSetCodeField As CharacterSetCodeType - + Private fileNameField As FileNameType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property URI() As URIType Get Return Me.uRIField @@ -16574,9 +16574,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uRIField = value End Set End Property - + ''' - _ + Public Property DocumentHash() As DocumentHashType Get Return Me.documentHashField @@ -16585,9 +16585,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentHashField = value End Set End Property - + ''' - _ + Public Property HashAlgorithmMethod() As HashAlgorithmMethodType Get Return Me.hashAlgorithmMethodField @@ -16596,9 +16596,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hashAlgorithmMethodField = value End Set End Property - + ''' - _ + Public Property ExpiryDate() As ExpiryDateType Get Return Me.expiryDateField @@ -16607,9 +16607,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expiryDateField = value End Set End Property - + ''' - _ + Public Property ExpiryTime() As ExpiryTimeType Get Return Me.expiryTimeField @@ -16618,9 +16618,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expiryTimeField = value End Set End Property - + ''' - _ + Public Property MimeCode() As MimeCodeType Get Return Me.mimeCodeField @@ -16629,9 +16629,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mimeCodeField = value End Set End Property - + ''' - _ + Public Property FormatCode() As FormatCodeType Get Return Me.formatCodeField @@ -16640,9 +16640,9 @@ Namespace Peppol.BISBilling30CreditNote Me.formatCodeField = value End Set End Property - + ''' - _ + Public Property EncodingCode() As EncodingCodeType Get Return Me.encodingCodeField @@ -16651,9 +16651,9 @@ Namespace Peppol.BISBilling30CreditNote Me.encodingCodeField = value End Set End Property - + ''' - _ + Public Property CharacterSetCode() As CharacterSetCodeType Get Return Me.characterSetCodeField @@ -16662,9 +16662,9 @@ Namespace Peppol.BISBilling30CreditNote Me.characterSetCodeField = value End Set End Property - + ''' - _ + Public Property FileName() As FileNameType Get Return Me.fileNameField @@ -16673,9 +16673,9 @@ Namespace Peppol.BISBilling30CreditNote Me.fileNameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -16685,34 +16685,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ResultOfVerificationType - + Private validatorIDField As ValidatorIDType - + Private validationResultCodeField As ValidationResultCodeType - + Private validationDateField As ValidationDateType - + Private validationTimeField As ValidationTimeType - + Private validateProcessField As ValidateProcessType - + Private validateToolField As ValidateToolType - + Private validateToolVersionField As ValidateToolVersionType - + Private signatoryPartyField As PartyType - + ''' - _ + Public Property ValidatorID() As ValidatorIDType Get Return Me.validatorIDField @@ -16721,9 +16721,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validatorIDField = value End Set End Property - + ''' - _ + Public Property ValidationResultCode() As ValidationResultCodeType Get Return Me.validationResultCodeField @@ -16732,9 +16732,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validationResultCodeField = value End Set End Property - + ''' - _ + Public Property ValidationDate() As ValidationDateType Get Return Me.validationDateField @@ -16743,9 +16743,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validationDateField = value End Set End Property - + ''' - _ + Public Property ValidationTime() As ValidationTimeType Get Return Me.validationTimeField @@ -16754,9 +16754,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validationTimeField = value End Set End Property - + ''' - _ + Public Property ValidateProcess() As ValidateProcessType Get Return Me.validateProcessField @@ -16765,9 +16765,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validateProcessField = value End Set End Property - + ''' - _ + Public Property ValidateTool() As ValidateToolType Get Return Me.validateToolField @@ -16776,9 +16776,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validateToolField = value End Set End Property - + ''' - _ + Public Property ValidateToolVersion() As ValidateToolVersionType Get Return Me.validateToolVersionField @@ -16787,7 +16787,7 @@ Namespace Peppol.BISBilling30CreditNote Me.validateToolVersionField = value End Set End Property - + ''' Public Property SignatoryParty() As PartyType Get @@ -16798,28 +16798,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ServiceProviderPartyType - + Private idField As IDType - + Private serviceTypeCodeField As ServiceTypeCodeType - + Private serviceTypeField() As ServiceTypeType - + Private partyField As PartyType - + Private sellerContactField As ContactType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16828,9 +16828,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ServiceTypeCode() As ServiceTypeCodeType Get Return Me.serviceTypeCodeField @@ -16839,9 +16839,9 @@ Namespace Peppol.BISBilling30CreditNote Me.serviceTypeCodeField = value End Set End Property - + ''' - _ + Public Property ServiceType() As ServiceTypeType() Get Return Me.serviceTypeField @@ -16850,7 +16850,7 @@ Namespace Peppol.BISBilling30CreditNote Me.serviceTypeField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -16860,7 +16860,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyField = value End Set End Property - + ''' Public Property SellerContact() As ContactType Get @@ -16871,34 +16871,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PowerOfAttorneyType - + Private idField As IDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private descriptionField() As DescriptionType - + Private notaryPartyField As PartyType - + Private agentPartyField As PartyType - + Private witnessPartyField() As PartyType - + Private mandateDocumentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16907,9 +16907,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -16918,9 +16918,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -16929,9 +16929,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -16940,7 +16940,7 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' Public Property NotaryParty() As PartyType Get @@ -16950,7 +16950,7 @@ Namespace Peppol.BISBilling30CreditNote Me.notaryPartyField = value End Set End Property - + ''' Public Property AgentParty() As PartyType Get @@ -16960,9 +16960,9 @@ Namespace Peppol.BISBilling30CreditNote Me.agentPartyField = value End Set End Property - + ''' - _ + Public Property WitnessParty() As PartyType() Get Return Me.witnessPartyField @@ -16971,9 +16971,9 @@ Namespace Peppol.BISBilling30CreditNote Me.witnessPartyField = value End Set End Property - + ''' - _ + Public Property MandateDocumentReference() As DocumentReferenceType() Get Return Me.mandateDocumentReferenceField @@ -16983,42 +16983,42 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class StatusType - + Private conditionCodeField As ConditionCodeType - + Private referenceDateField As ReferenceDateType - + Private referenceTimeField As ReferenceTimeType - + Private descriptionField() As DescriptionType - + Private statusReasonCodeField As StatusReasonCodeType - + Private statusReasonField() As StatusReasonType - + Private sequenceIDField As SequenceIDType - + Private textField() As TextType2 - + Private indicationIndicatorField As IndicationIndicatorType - + Private percentField As PercentType1 - + Private reliabilityPercentField As ReliabilityPercentType - + Private conditionField() As ConditionType1 - + ''' - _ + Public Property ConditionCode() As ConditionCodeType Get Return Me.conditionCodeField @@ -17027,9 +17027,9 @@ Namespace Peppol.BISBilling30CreditNote Me.conditionCodeField = value End Set End Property - + ''' - _ + Public Property ReferenceDate() As ReferenceDateType Get Return Me.referenceDateField @@ -17038,9 +17038,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceDateField = value End Set End Property - + ''' - _ + Public Property ReferenceTime() As ReferenceTimeType Get Return Me.referenceTimeField @@ -17049,9 +17049,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceTimeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -17060,9 +17060,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property StatusReasonCode() As StatusReasonCodeType Get Return Me.statusReasonCodeField @@ -17071,9 +17071,9 @@ Namespace Peppol.BISBilling30CreditNote Me.statusReasonCodeField = value End Set End Property - + ''' - _ + Public Property StatusReason() As StatusReasonType() Get Return Me.statusReasonField @@ -17082,9 +17082,9 @@ Namespace Peppol.BISBilling30CreditNote Me.statusReasonField = value End Set End Property - + ''' - _ + Public Property SequenceID() As SequenceIDType Get Return Me.sequenceIDField @@ -17093,9 +17093,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceIDField = value End Set End Property - + ''' - _ + Public Property Text() As TextType2() Get Return Me.textField @@ -17104,9 +17104,9 @@ Namespace Peppol.BISBilling30CreditNote Me.textField = value End Set End Property - + ''' - _ + Public Property IndicationIndicator() As IndicationIndicatorType Get Return Me.indicationIndicatorField @@ -17115,9 +17115,9 @@ Namespace Peppol.BISBilling30CreditNote Me.indicationIndicatorField = value End Set End Property - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -17126,9 +17126,9 @@ Namespace Peppol.BISBilling30CreditNote Me.percentField = value End Set End Property - + ''' - _ + Public Property ReliabilityPercent() As ReliabilityPercentType Get Return Me.reliabilityPercentField @@ -17137,9 +17137,9 @@ Namespace Peppol.BISBilling30CreditNote Me.reliabilityPercentField = value End Set End Property - + ''' - _ + Public Property Condition() As ConditionType1() Get Return Me.conditionField @@ -17149,28 +17149,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConditionType1 - + Private attributeIDField As AttributeIDType - + Private measureField As MeasureType2 - + Private descriptionField() As DescriptionType - + Private minimumMeasureField As MinimumMeasureType - + Private maximumMeasureField As MaximumMeasureType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -17179,9 +17179,9 @@ Namespace Peppol.BISBilling30CreditNote Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property Measure() As MeasureType2 Get Return Me.measureField @@ -17190,9 +17190,9 @@ Namespace Peppol.BISBilling30CreditNote Me.measureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -17201,9 +17201,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property MinimumMeasure() As MinimumMeasureType Get Return Me.minimumMeasureField @@ -17212,9 +17212,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumMeasureField = value End Set End Property - + ''' - _ + Public Property MaximumMeasure() As MaximumMeasureType Get Return Me.maximumMeasureField @@ -17224,46 +17224,46 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContractType - + Private idField As IDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private nominationDateField As NominationDateType - + Private nominationTimeField As NominationTimeType - + Private contractTypeCodeField As ContractTypeCodeType - + Private contractType1Field As ContractTypeType - + Private noteField() As NoteType - + Private versionIDField As VersionIDType - + Private descriptionField() As DescriptionType - + Private validityPeriodField As PeriodType - + Private contractDocumentReferenceField() As DocumentReferenceType - + Private nominationPeriodField As PeriodType - + Private contractualDeliveryField As DeliveryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -17272,9 +17272,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -17283,9 +17283,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -17294,9 +17294,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property NominationDate() As NominationDateType Get Return Me.nominationDateField @@ -17305,9 +17305,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nominationDateField = value End Set End Property - + ''' - _ + Public Property NominationTime() As NominationTimeType Get Return Me.nominationTimeField @@ -17316,9 +17316,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nominationTimeField = value End Set End Property - + ''' - _ + Public Property ContractTypeCode() As ContractTypeCodeType Get Return Me.contractTypeCodeField @@ -17327,9 +17327,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractTypeCodeField = value End Set End Property - + ''' - _ + Public Property ContractType1() As ContractTypeType Get Return Me.contractType1Field @@ -17338,9 +17338,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractType1Field = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -17349,9 +17349,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -17360,9 +17360,9 @@ Namespace Peppol.BISBilling30CreditNote Me.versionIDField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -17371,7 +17371,7 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -17381,9 +17381,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validityPeriodField = value End Set End Property - + ''' - _ + Public Property ContractDocumentReference() As DocumentReferenceType() Get Return Me.contractDocumentReferenceField @@ -17392,7 +17392,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractDocumentReferenceField = value End Set End Property - + ''' Public Property NominationPeriod() As PeriodType Get @@ -17402,7 +17402,7 @@ Namespace Peppol.BISBilling30CreditNote Me.nominationPeriodField = value End Set End Property - + ''' Public Property ContractualDelivery() As DeliveryType Get @@ -17413,66 +17413,66 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DeliveryType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private actualDeliveryDateField As ActualDeliveryDateType - + Private actualDeliveryTimeField As ActualDeliveryTimeType - + Private latestDeliveryDateField As LatestDeliveryDateType - + Private latestDeliveryTimeField As LatestDeliveryTimeType - + Private releaseIDField As ReleaseIDType - + Private trackingIDField As TrackingIDType - + Private deliveryAddressField As AddressType - + Private deliveryLocationField As LocationType1 - + Private alternativeDeliveryLocationField As LocationType1 - + Private requestedDeliveryPeriodField As PeriodType - + Private promisedDeliveryPeriodField As PeriodType - + Private estimatedDeliveryPeriodField As PeriodType - + Private carrierPartyField As PartyType - + Private deliveryPartyField As PartyType - + Private notifyPartyField() As PartyType - + Private despatchField As DespatchType - + Private deliveryTermsField() As DeliveryTermsType - + Private minimumDeliveryUnitField As DeliveryUnitType - + Private maximumDeliveryUnitField As DeliveryUnitType - + Private shipmentField As ShipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -17481,9 +17481,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -17492,9 +17492,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -17503,9 +17503,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -17514,9 +17514,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property ActualDeliveryDate() As ActualDeliveryDateType Get Return Me.actualDeliveryDateField @@ -17525,9 +17525,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualDeliveryDateField = value End Set End Property - + ''' - _ + Public Property ActualDeliveryTime() As ActualDeliveryTimeType Get Return Me.actualDeliveryTimeField @@ -17536,9 +17536,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property LatestDeliveryDate() As LatestDeliveryDateType Get Return Me.latestDeliveryDateField @@ -17547,9 +17547,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestDeliveryDateField = value End Set End Property - + ''' - _ + Public Property LatestDeliveryTime() As LatestDeliveryTimeType Get Return Me.latestDeliveryTimeField @@ -17558,9 +17558,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property ReleaseID() As ReleaseIDType Get Return Me.releaseIDField @@ -17569,9 +17569,9 @@ Namespace Peppol.BISBilling30CreditNote Me.releaseIDField = value End Set End Property - + ''' - _ + Public Property TrackingID() As TrackingIDType Get Return Me.trackingIDField @@ -17580,7 +17580,7 @@ Namespace Peppol.BISBilling30CreditNote Me.trackingIDField = value End Set End Property - + ''' Public Property DeliveryAddress() As AddressType Get @@ -17590,7 +17590,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryAddressField = value End Set End Property - + ''' Public Property DeliveryLocation() As LocationType1 Get @@ -17600,7 +17600,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryLocationField = value End Set End Property - + ''' Public Property AlternativeDeliveryLocation() As LocationType1 Get @@ -17610,7 +17610,7 @@ Namespace Peppol.BISBilling30CreditNote Me.alternativeDeliveryLocationField = value End Set End Property - + ''' Public Property RequestedDeliveryPeriod() As PeriodType Get @@ -17620,7 +17620,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedDeliveryPeriodField = value End Set End Property - + ''' Public Property PromisedDeliveryPeriod() As PeriodType Get @@ -17630,7 +17630,7 @@ Namespace Peppol.BISBilling30CreditNote Me.promisedDeliveryPeriodField = value End Set End Property - + ''' Public Property EstimatedDeliveryPeriod() As PeriodType Get @@ -17640,7 +17640,7 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDeliveryPeriodField = value End Set End Property - + ''' Public Property CarrierParty() As PartyType Get @@ -17650,7 +17650,7 @@ Namespace Peppol.BISBilling30CreditNote Me.carrierPartyField = value End Set End Property - + ''' Public Property DeliveryParty() As PartyType Get @@ -17660,9 +17660,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryPartyField = value End Set End Property - + ''' - _ + Public Property NotifyParty() As PartyType() Get Return Me.notifyPartyField @@ -17671,7 +17671,7 @@ Namespace Peppol.BISBilling30CreditNote Me.notifyPartyField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -17681,9 +17681,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -17692,7 +17692,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' Public Property MinimumDeliveryUnit() As DeliveryUnitType Get @@ -17702,7 +17702,7 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumDeliveryUnitField = value End Set End Property - + ''' Public Property MaximumDeliveryUnit() As DeliveryUnitType Get @@ -17712,7 +17712,7 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumDeliveryUnitField = value End Set End Property - + ''' Public Property Shipment() As ShipmentType Get @@ -17723,56 +17723,56 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DespatchType - + Private idField As IDType - + Private requestedDespatchDateField As RequestedDespatchDateType - + Private requestedDespatchTimeField As RequestedDespatchTimeType - + Private estimatedDespatchDateField As EstimatedDespatchDateType - + Private estimatedDespatchTimeField As EstimatedDespatchTimeType - + Private actualDespatchDateField As ActualDespatchDateType - + Private actualDespatchTimeField As ActualDespatchTimeType - + Private guaranteedDespatchDateField As GuaranteedDespatchDateType - + Private guaranteedDespatchTimeField As GuaranteedDespatchTimeType - + Private releaseIDField As ReleaseIDType - + Private instructionsField() As InstructionsType - + Private despatchAddressField As AddressType - + Private despatchLocationField As LocationType1 - + Private despatchPartyField As PartyType - + Private carrierPartyField As PartyType - + Private notifyPartyField() As PartyType - + Private contactField As ContactType - + Private estimatedDespatchPeriodField As PeriodType - + Private requestedDespatchPeriodField As PeriodType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -17781,9 +17781,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property RequestedDespatchDate() As RequestedDespatchDateType Get Return Me.requestedDespatchDateField @@ -17792,9 +17792,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedDespatchDateField = value End Set End Property - + ''' - _ + Public Property RequestedDespatchTime() As RequestedDespatchTimeType Get Return Me.requestedDespatchTimeField @@ -17803,9 +17803,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedDespatchTimeField = value End Set End Property - + ''' - _ + Public Property EstimatedDespatchDate() As EstimatedDespatchDateType Get Return Me.estimatedDespatchDateField @@ -17814,9 +17814,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDespatchDateField = value End Set End Property - + ''' - _ + Public Property EstimatedDespatchTime() As EstimatedDespatchTimeType Get Return Me.estimatedDespatchTimeField @@ -17825,9 +17825,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDespatchTimeField = value End Set End Property - + ''' - _ + Public Property ActualDespatchDate() As ActualDespatchDateType Get Return Me.actualDespatchDateField @@ -17836,9 +17836,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualDespatchDateField = value End Set End Property - + ''' - _ + Public Property ActualDespatchTime() As ActualDespatchTimeType Get Return Me.actualDespatchTimeField @@ -17847,9 +17847,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualDespatchTimeField = value End Set End Property - + ''' - _ + Public Property GuaranteedDespatchDate() As GuaranteedDespatchDateType Get Return Me.guaranteedDespatchDateField @@ -17858,9 +17858,9 @@ Namespace Peppol.BISBilling30CreditNote Me.guaranteedDespatchDateField = value End Set End Property - + ''' - _ + Public Property GuaranteedDespatchTime() As GuaranteedDespatchTimeType Get Return Me.guaranteedDespatchTimeField @@ -17869,9 +17869,9 @@ Namespace Peppol.BISBilling30CreditNote Me.guaranteedDespatchTimeField = value End Set End Property - + ''' - _ + Public Property ReleaseID() As ReleaseIDType Get Return Me.releaseIDField @@ -17880,9 +17880,9 @@ Namespace Peppol.BISBilling30CreditNote Me.releaseIDField = value End Set End Property - + ''' - _ + Public Property Instructions() As InstructionsType() Get Return Me.instructionsField @@ -17891,7 +17891,7 @@ Namespace Peppol.BISBilling30CreditNote Me.instructionsField = value End Set End Property - + ''' Public Property DespatchAddress() As AddressType Get @@ -17901,7 +17901,7 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchAddressField = value End Set End Property - + ''' Public Property DespatchLocation() As LocationType1 Get @@ -17911,7 +17911,7 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchLocationField = value End Set End Property - + ''' Public Property DespatchParty() As PartyType Get @@ -17921,7 +17921,7 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchPartyField = value End Set End Property - + ''' Public Property CarrierParty() As PartyType Get @@ -17931,9 +17931,9 @@ Namespace Peppol.BISBilling30CreditNote Me.carrierPartyField = value End Set End Property - + ''' - _ + Public Property NotifyParty() As PartyType() Get Return Me.notifyPartyField @@ -17942,7 +17942,7 @@ Namespace Peppol.BISBilling30CreditNote Me.notifyPartyField = value End Set End Property - + ''' Public Property Contact() As ContactType Get @@ -17952,7 +17952,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contactField = value End Set End Property - + ''' Public Property EstimatedDespatchPeriod() As PeriodType Get @@ -17962,7 +17962,7 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDespatchPeriodField = value End Set End Property - + ''' Public Property RequestedDespatchPeriod() As PeriodType Get @@ -17973,32 +17973,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DeliveryTermsType - + Private idField As IDType - + Private specialTermsField() As SpecialTermsType - + Private lossRiskResponsibilityCodeField As LossRiskResponsibilityCodeType - + Private lossRiskField() As LossRiskType - + Private amountField As AmountType2 - + Private deliveryLocationField As LocationType1 - + Private allowanceChargeField As AllowanceChargeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18007,9 +18007,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SpecialTerms() As SpecialTermsType() Get Return Me.specialTermsField @@ -18018,9 +18018,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specialTermsField = value End Set End Property - + ''' - _ + Public Property LossRiskResponsibilityCode() As LossRiskResponsibilityCodeType Get Return Me.lossRiskResponsibilityCodeField @@ -18029,9 +18029,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lossRiskResponsibilityCodeField = value End Set End Property - + ''' - _ + Public Property LossRisk() As LossRiskType() Get Return Me.lossRiskField @@ -18040,9 +18040,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lossRiskField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -18051,7 +18051,7 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' Public Property DeliveryLocation() As LocationType1 Get @@ -18061,7 +18061,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryLocationField = value End Set End Property - + ''' Public Property AllowanceCharge() As AllowanceChargeType Get @@ -18072,48 +18072,48 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AllowanceChargeType - + Private idField As IDType - + Private chargeIndicatorField As ChargeIndicatorType - + Private allowanceChargeReasonCodeField As AllowanceChargeReasonCodeType - + Private allowanceChargeReasonField() As AllowanceChargeReasonType - + Private multiplierFactorNumericField As MultiplierFactorNumericType - + Private prepaidIndicatorField As PrepaidIndicatorType - + Private sequenceNumericField As SequenceNumericType - + Private amountField As AmountType2 - + Private baseAmountField As BaseAmountType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private perUnitAmountField As PerUnitAmountType - + Private taxCategoryField() As TaxCategoryType - + Private taxTotalField As TaxTotalType - + Private paymentMeansField() As PaymentMeansType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18122,9 +18122,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ChargeIndicator() As ChargeIndicatorType Get Return Me.chargeIndicatorField @@ -18133,9 +18133,9 @@ Namespace Peppol.BISBilling30CreditNote Me.chargeIndicatorField = value End Set End Property - + ''' - _ + Public Property AllowanceChargeReasonCode() As AllowanceChargeReasonCodeType Get Return Me.allowanceChargeReasonCodeField @@ -18144,9 +18144,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeReasonCodeField = value End Set End Property - + ''' - _ + Public Property AllowanceChargeReason() As AllowanceChargeReasonType() Get Return Me.allowanceChargeReasonField @@ -18155,9 +18155,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeReasonField = value End Set End Property - + ''' - _ + Public Property MultiplierFactorNumeric() As MultiplierFactorNumericType Get Return Me.multiplierFactorNumericField @@ -18166,9 +18166,9 @@ Namespace Peppol.BISBilling30CreditNote Me.multiplierFactorNumericField = value End Set End Property - + ''' - _ + Public Property PrepaidIndicator() As PrepaidIndicatorType Get Return Me.prepaidIndicatorField @@ -18177,9 +18177,9 @@ Namespace Peppol.BISBilling30CreditNote Me.prepaidIndicatorField = value End Set End Property - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -18188,9 +18188,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -18199,9 +18199,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property BaseAmount() As BaseAmountType Get Return Me.baseAmountField @@ -18210,9 +18210,9 @@ Namespace Peppol.BISBilling30CreditNote Me.baseAmountField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -18221,9 +18221,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -18232,9 +18232,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PerUnitAmount() As PerUnitAmountType Get Return Me.perUnitAmountField @@ -18243,9 +18243,9 @@ Namespace Peppol.BISBilling30CreditNote Me.perUnitAmountField = value End Set End Property - + ''' - _ + Public Property TaxCategory() As TaxCategoryType() Get Return Me.taxCategoryField @@ -18254,7 +18254,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxCategoryField = value End Set End Property - + ''' Public Property TaxTotal() As TaxTotalType Get @@ -18264,9 +18264,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property PaymentMeans() As PaymentMeansType() Get Return Me.paymentMeansField @@ -18276,38 +18276,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TaxCategoryType - + Private idField As IDType - + Private nameField As NameType1 - + Private percentField As PercentType1 - + Private baseUnitMeasureField As BaseUnitMeasureType - + Private perUnitAmountField As PerUnitAmountType - + Private taxExemptionReasonCodeField As TaxExemptionReasonCodeType - + Private taxExemptionReasonField() As TaxExemptionReasonType - + Private tierRangeField As TierRangeType - + Private tierRatePercentField As TierRatePercentType - + Private taxSchemeField As TaxSchemeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18316,9 +18316,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -18327,9 +18327,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -18338,9 +18338,9 @@ Namespace Peppol.BISBilling30CreditNote Me.percentField = value End Set End Property - + ''' - _ + Public Property BaseUnitMeasure() As BaseUnitMeasureType Get Return Me.baseUnitMeasureField @@ -18349,9 +18349,9 @@ Namespace Peppol.BISBilling30CreditNote Me.baseUnitMeasureField = value End Set End Property - + ''' - _ + Public Property PerUnitAmount() As PerUnitAmountType Get Return Me.perUnitAmountField @@ -18360,9 +18360,9 @@ Namespace Peppol.BISBilling30CreditNote Me.perUnitAmountField = value End Set End Property - + ''' - _ + Public Property TaxExemptionReasonCode() As TaxExemptionReasonCodeType Get Return Me.taxExemptionReasonCodeField @@ -18371,9 +18371,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxExemptionReasonCodeField = value End Set End Property - + ''' - _ + Public Property TaxExemptionReason() As TaxExemptionReasonType() Get Return Me.taxExemptionReasonField @@ -18382,9 +18382,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxExemptionReasonField = value End Set End Property - + ''' - _ + Public Property TierRange() As TierRangeType Get Return Me.tierRangeField @@ -18393,9 +18393,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tierRangeField = value End Set End Property - + ''' - _ + Public Property TierRatePercent() As TierRatePercentType Get Return Me.tierRatePercentField @@ -18404,7 +18404,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tierRatePercentField = value End Set End Property - + ''' Public Property TaxScheme() As TaxSchemeType Get @@ -18415,28 +18415,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TaxTotalType - + Private taxAmountField As TaxAmountType - + Private roundingAmountField As RoundingAmountType - + Private taxEvidenceIndicatorField As TaxEvidenceIndicatorType - + Private taxIncludedIndicatorField As TaxIncludedIndicatorType - + Private taxSubtotalField() As TaxSubtotalType - + ''' - _ + Public Property TaxAmount() As TaxAmountType Get Return Me.taxAmountField @@ -18445,9 +18445,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxAmountField = value End Set End Property - + ''' - _ + Public Property RoundingAmount() As RoundingAmountType Get Return Me.roundingAmountField @@ -18456,9 +18456,9 @@ Namespace Peppol.BISBilling30CreditNote Me.roundingAmountField = value End Set End Property - + ''' - _ + Public Property TaxEvidenceIndicator() As TaxEvidenceIndicatorType Get Return Me.taxEvidenceIndicatorField @@ -18467,9 +18467,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxEvidenceIndicatorField = value End Set End Property - + ''' - _ + Public Property TaxIncludedIndicator() As TaxIncludedIndicatorType Get Return Me.taxIncludedIndicatorField @@ -18478,9 +18478,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxIncludedIndicatorField = value End Set End Property - + ''' - _ + Public Property TaxSubtotal() As TaxSubtotalType() Get Return Me.taxSubtotalField @@ -18490,38 +18490,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TaxSubtotalType - + Private taxableAmountField As TaxableAmountType - + Private taxAmountField As TaxAmountType - + Private calculationSequenceNumericField As CalculationSequenceNumericType - + Private transactionCurrencyTaxAmountField As TransactionCurrencyTaxAmountType - + Private percentField As PercentType1 - + Private baseUnitMeasureField As BaseUnitMeasureType - + Private perUnitAmountField As PerUnitAmountType - + Private tierRangeField As TierRangeType - + Private tierRatePercentField As TierRatePercentType - + Private taxCategoryField As TaxCategoryType - + ''' - _ + Public Property TaxableAmount() As TaxableAmountType Get Return Me.taxableAmountField @@ -18530,9 +18530,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxableAmountField = value End Set End Property - + ''' - _ + Public Property TaxAmount() As TaxAmountType Get Return Me.taxAmountField @@ -18541,9 +18541,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxAmountField = value End Set End Property - + ''' - _ + Public Property CalculationSequenceNumeric() As CalculationSequenceNumericType Get Return Me.calculationSequenceNumericField @@ -18552,9 +18552,9 @@ Namespace Peppol.BISBilling30CreditNote Me.calculationSequenceNumericField = value End Set End Property - + ''' - _ + Public Property TransactionCurrencyTaxAmount() As TransactionCurrencyTaxAmountType Get Return Me.transactionCurrencyTaxAmountField @@ -18563,9 +18563,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transactionCurrencyTaxAmountField = value End Set End Property - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -18574,9 +18574,9 @@ Namespace Peppol.BISBilling30CreditNote Me.percentField = value End Set End Property - + ''' - _ + Public Property BaseUnitMeasure() As BaseUnitMeasureType Get Return Me.baseUnitMeasureField @@ -18585,9 +18585,9 @@ Namespace Peppol.BISBilling30CreditNote Me.baseUnitMeasureField = value End Set End Property - + ''' - _ + Public Property PerUnitAmount() As PerUnitAmountType Get Return Me.perUnitAmountField @@ -18596,9 +18596,9 @@ Namespace Peppol.BISBilling30CreditNote Me.perUnitAmountField = value End Set End Property - + ''' - _ + Public Property TierRange() As TierRangeType Get Return Me.tierRangeField @@ -18607,9 +18607,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tierRangeField = value End Set End Property - + ''' - _ + Public Property TierRatePercent() As TierRatePercentType Get Return Me.tierRatePercentField @@ -18618,7 +18618,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tierRatePercentField = value End Set End Property - + ''' Public Property TaxCategory() As TaxCategoryType Get @@ -18629,44 +18629,44 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PaymentMeansType - + Private idField As IDType - + Private paymentMeansCodeField As PaymentMeansCodeType - + Private paymentDueDateField As PaymentDueDateType - + Private paymentChannelCodeField As PaymentChannelCodeType - + Private instructionIDField As InstructionIDType - + Private instructionNoteField() As InstructionNoteType - + Private paymentIDField() As PaymentIDType - + Private cardAccountField As CardAccountType - + Private payerFinancialAccountField As FinancialAccountType - + Private payeeFinancialAccountField As FinancialAccountType - + Private creditAccountField As CreditAccountType - + Private paymentMandateField As PaymentMandateType - + Private tradeFinancingField As TradeFinancingType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18675,9 +18675,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property PaymentMeansCode() As PaymentMeansCodeType Get Return Me.paymentMeansCodeField @@ -18686,9 +18686,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentMeansCodeField = value End Set End Property - + ''' - _ + Public Property PaymentDueDate() As PaymentDueDateType Get Return Me.paymentDueDateField @@ -18697,9 +18697,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentDueDateField = value End Set End Property - + ''' - _ + Public Property PaymentChannelCode() As PaymentChannelCodeType Get Return Me.paymentChannelCodeField @@ -18708,9 +18708,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentChannelCodeField = value End Set End Property - + ''' - _ + Public Property InstructionID() As InstructionIDType Get Return Me.instructionIDField @@ -18719,9 +18719,9 @@ Namespace Peppol.BISBilling30CreditNote Me.instructionIDField = value End Set End Property - + ''' - _ + Public Property InstructionNote() As InstructionNoteType() Get Return Me.instructionNoteField @@ -18730,9 +18730,9 @@ Namespace Peppol.BISBilling30CreditNote Me.instructionNoteField = value End Set End Property - + ''' - _ + Public Property PaymentID() As PaymentIDType() Get Return Me.paymentIDField @@ -18741,7 +18741,7 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentIDField = value End Set End Property - + ''' Public Property CardAccount() As CardAccountType Get @@ -18751,7 +18751,7 @@ Namespace Peppol.BISBilling30CreditNote Me.cardAccountField = value End Set End Property - + ''' Public Property PayerFinancialAccount() As FinancialAccountType Get @@ -18761,7 +18761,7 @@ Namespace Peppol.BISBilling30CreditNote Me.payerFinancialAccountField = value End Set End Property - + ''' Public Property PayeeFinancialAccount() As FinancialAccountType Get @@ -18771,7 +18771,7 @@ Namespace Peppol.BISBilling30CreditNote Me.payeeFinancialAccountField = value End Set End Property - + ''' Public Property CreditAccount() As CreditAccountType Get @@ -18781,7 +18781,7 @@ Namespace Peppol.BISBilling30CreditNote Me.creditAccountField = value End Set End Property - + ''' Public Property PaymentMandate() As PaymentMandateType Get @@ -18791,7 +18791,7 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentMandateField = value End Set End Property - + ''' Public Property TradeFinancing() As TradeFinancingType Get @@ -18802,40 +18802,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CardAccountType - + Private primaryAccountNumberIDField As PrimaryAccountNumberIDType - + Private networkIDField As NetworkIDType - + Private cardTypeCodeField As CardTypeCodeType - + Private validityStartDateField As ValidityStartDateType - + Private expiryDateField As ExpiryDateType - + Private issuerIDField As IssuerIDType - + Private issueNumberIDField As IssueNumberIDType - + Private cV2IDField As CV2IDType - + Private cardChipCodeField As CardChipCodeType - + Private chipApplicationIDField As ChipApplicationIDType - + Private holderNameField As HolderNameType - + ''' - _ + Public Property PrimaryAccountNumberID() As PrimaryAccountNumberIDType Get Return Me.primaryAccountNumberIDField @@ -18844,9 +18844,9 @@ Namespace Peppol.BISBilling30CreditNote Me.primaryAccountNumberIDField = value End Set End Property - + ''' - _ + Public Property NetworkID() As NetworkIDType Get Return Me.networkIDField @@ -18855,9 +18855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.networkIDField = value End Set End Property - + ''' - _ + Public Property CardTypeCode() As CardTypeCodeType Get Return Me.cardTypeCodeField @@ -18866,9 +18866,9 @@ Namespace Peppol.BISBilling30CreditNote Me.cardTypeCodeField = value End Set End Property - + ''' - _ + Public Property ValidityStartDate() As ValidityStartDateType Get Return Me.validityStartDateField @@ -18877,9 +18877,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validityStartDateField = value End Set End Property - + ''' - _ + Public Property ExpiryDate() As ExpiryDateType Get Return Me.expiryDateField @@ -18888,9 +18888,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expiryDateField = value End Set End Property - + ''' - _ + Public Property IssuerID() As IssuerIDType Get Return Me.issuerIDField @@ -18899,9 +18899,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issuerIDField = value End Set End Property - + ''' - _ + Public Property IssueNumberID() As IssueNumberIDType Get Return Me.issueNumberIDField @@ -18910,9 +18910,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueNumberIDField = value End Set End Property - + ''' - _ + Public Property CV2ID() As CV2IDType Get Return Me.cV2IDField @@ -18921,9 +18921,9 @@ Namespace Peppol.BISBilling30CreditNote Me.cV2IDField = value End Set End Property - + ''' - _ + Public Property CardChipCode() As CardChipCodeType Get Return Me.cardChipCodeField @@ -18932,9 +18932,9 @@ Namespace Peppol.BISBilling30CreditNote Me.cardChipCodeField = value End Set End Property - + ''' - _ + Public Property ChipApplicationID() As ChipApplicationIDType Get Return Me.chipApplicationIDField @@ -18943,9 +18943,9 @@ Namespace Peppol.BISBilling30CreditNote Me.chipApplicationIDField = value End Set End Property - + ''' - _ + Public Property HolderName() As HolderNameType Get Return Me.holderNameField @@ -18955,20 +18955,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CreditAccountType - + Private accountIDField As AccountIDType - + ''' - _ + Public Property AccountID() As AccountIDType Get Return Me.accountIDField @@ -18978,38 +18978,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PaymentMandateType - + Private idField As IDType - + Private mandateTypeCodeField As MandateTypeCodeType - + Private maximumPaymentInstructionsNumericField As MaximumPaymentInstructionsNumericType - + Private maximumPaidAmountField As MaximumPaidAmountType - + Private signatureIDField As SignatureIDType - + Private payerPartyField As PartyType - + Private payerFinancialAccountField As FinancialAccountType - + Private validityPeriodField As PeriodType - + Private paymentReversalPeriodField As PeriodType - + Private clauseField() As ClauseType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19018,9 +19018,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property MandateTypeCode() As MandateTypeCodeType Get Return Me.mandateTypeCodeField @@ -19029,9 +19029,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mandateTypeCodeField = value End Set End Property - + ''' - _ + Public Property MaximumPaymentInstructionsNumeric() As MaximumPaymentInstructionsNumericType Get Return Me.maximumPaymentInstructionsNumericField @@ -19040,9 +19040,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumPaymentInstructionsNumericField = value End Set End Property - + ''' - _ + Public Property MaximumPaidAmount() As MaximumPaidAmountType Get Return Me.maximumPaidAmountField @@ -19051,9 +19051,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumPaidAmountField = value End Set End Property - + ''' - _ + Public Property SignatureID() As SignatureIDType Get Return Me.signatureIDField @@ -19062,7 +19062,7 @@ Namespace Peppol.BISBilling30CreditNote Me.signatureIDField = value End Set End Property - + ''' Public Property PayerParty() As PartyType Get @@ -19072,7 +19072,7 @@ Namespace Peppol.BISBilling30CreditNote Me.payerPartyField = value End Set End Property - + ''' Public Property PayerFinancialAccount() As FinancialAccountType Get @@ -19082,7 +19082,7 @@ Namespace Peppol.BISBilling30CreditNote Me.payerFinancialAccountField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -19092,7 +19092,7 @@ Namespace Peppol.BISBilling30CreditNote Me.validityPeriodField = value End Set End Property - + ''' Public Property PaymentReversalPeriod() As PeriodType Get @@ -19102,9 +19102,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentReversalPeriodField = value End Set End Property - + ''' - _ + Public Property Clause() As ClauseType() Get Return Me.clauseField @@ -19114,22 +19114,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ClauseType - + Private idField As IDType - + Private contentField() As ContentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19138,9 +19138,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Content() As ContentType() Get Return Me.contentField @@ -19150,32 +19150,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TradeFinancingType - + Private idField As IDType - + Private financingInstrumentCodeField As FinancingInstrumentCodeType - + Private contractDocumentReferenceField As DocumentReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private financingPartyField As PartyType - + Private financingFinancialAccountField As FinancialAccountType - + Private clauseField() As ClauseType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19184,9 +19184,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property FinancingInstrumentCode() As FinancingInstrumentCodeType Get Return Me.financingInstrumentCodeField @@ -19195,7 +19195,7 @@ Namespace Peppol.BISBilling30CreditNote Me.financingInstrumentCodeField = value End Set End Property - + ''' Public Property ContractDocumentReference() As DocumentReferenceType Get @@ -19205,9 +19205,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -19216,7 +19216,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property FinancingParty() As PartyType Get @@ -19226,7 +19226,7 @@ Namespace Peppol.BISBilling30CreditNote Me.financingPartyField = value End Set End Property - + ''' Public Property FinancingFinancialAccount() As FinancialAccountType Get @@ -19236,9 +19236,9 @@ Namespace Peppol.BISBilling30CreditNote Me.financingFinancialAccountField = value End Set End Property - + ''' - _ + Public Property Clause() As ClauseType() Get Return Me.clauseField @@ -19248,24 +19248,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DeliveryUnitType - + Private batchQuantityField As BatchQuantityType - + Private consumerUnitQuantityField As ConsumerUnitQuantityType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + ''' - _ + Public Property BatchQuantity() As BatchQuantityType Get Return Me.batchQuantityField @@ -19274,9 +19274,9 @@ Namespace Peppol.BISBilling30CreditNote Me.batchQuantityField = value End Set End Property - + ''' - _ + Public Property ConsumerUnitQuantity() As ConsumerUnitQuantityType Get Return Me.consumerUnitQuantityField @@ -19285,9 +19285,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumerUnitQuantityField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -19297,64 +19297,64 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportationServiceType - + Private transportServiceCodeField As TransportServiceCodeType - + Private tariffClassCodeField As TariffClassCodeType - + Private priorityField As PriorityType - + Private freightRateClassCodeField As FreightRateClassCodeType - + Private transportationServiceDescriptionField() As TransportationServiceDescriptionType - + Private transportationServiceDetailsURIField As TransportationServiceDetailsURIType - + Private nominationDateField As NominationDateType - + Private nominationTimeField As NominationTimeType - + Private nameField As NameType1 - + Private sequenceNumericField As SequenceNumericType - + Private transportEquipmentField() As TransportEquipmentType - + Private supportedTransportEquipmentField() As TransportEquipmentType - + Private unsupportedTransportEquipmentField() As TransportEquipmentType - + Private commodityClassificationField() As CommodityClassificationType - + Private supportedCommodityClassificationField() As CommodityClassificationType - + Private unsupportedCommodityClassificationField() As CommodityClassificationType - + Private totalCapacityDimensionField As DimensionType - + Private shipmentStageField() As ShipmentStageType - + Private transportEventField() As TransportEventType - + Private responsibleTransportServiceProviderPartyField As PartyType - + Private environmentalEmissionField() As EnvironmentalEmissionType - + Private estimatedDurationPeriodField As PeriodType - + Private scheduledServiceFrequencyField() As ServiceFrequencyType - + ''' - _ + Public Property TransportServiceCode() As TransportServiceCodeType Get Return Me.transportServiceCodeField @@ -19363,9 +19363,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportServiceCodeField = value End Set End Property - + ''' - _ + Public Property TariffClassCode() As TariffClassCodeType Get Return Me.tariffClassCodeField @@ -19374,9 +19374,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tariffClassCodeField = value End Set End Property - + ''' - _ + Public Property Priority() As PriorityType Get Return Me.priorityField @@ -19385,9 +19385,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priorityField = value End Set End Property - + ''' - _ + Public Property FreightRateClassCode() As FreightRateClassCodeType Get Return Me.freightRateClassCodeField @@ -19396,9 +19396,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freightRateClassCodeField = value End Set End Property - + ''' - _ + Public Property TransportationServiceDescription() As TransportationServiceDescriptionType() Get Return Me.transportationServiceDescriptionField @@ -19407,9 +19407,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportationServiceDescriptionField = value End Set End Property - + ''' - _ + Public Property TransportationServiceDetailsURI() As TransportationServiceDetailsURIType Get Return Me.transportationServiceDetailsURIField @@ -19418,9 +19418,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportationServiceDetailsURIField = value End Set End Property - + ''' - _ + Public Property NominationDate() As NominationDateType Get Return Me.nominationDateField @@ -19429,9 +19429,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nominationDateField = value End Set End Property - + ''' - _ + Public Property NominationTime() As NominationTimeType Get Return Me.nominationTimeField @@ -19440,9 +19440,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nominationTimeField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -19451,9 +19451,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -19462,9 +19462,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property TransportEquipment() As TransportEquipmentType() Get Return Me.transportEquipmentField @@ -19473,9 +19473,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEquipmentField = value End Set End Property - + ''' - _ + Public Property SupportedTransportEquipment() As TransportEquipmentType() Get Return Me.supportedTransportEquipmentField @@ -19484,9 +19484,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supportedTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property UnsupportedTransportEquipment() As TransportEquipmentType() Get Return Me.unsupportedTransportEquipmentField @@ -19495,9 +19495,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unsupportedTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property CommodityClassification() As CommodityClassificationType() Get Return Me.commodityClassificationField @@ -19506,9 +19506,9 @@ Namespace Peppol.BISBilling30CreditNote Me.commodityClassificationField = value End Set End Property - + ''' - _ + Public Property SupportedCommodityClassification() As CommodityClassificationType() Get Return Me.supportedCommodityClassificationField @@ -19517,9 +19517,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supportedCommodityClassificationField = value End Set End Property - + ''' - _ + Public Property UnsupportedCommodityClassification() As CommodityClassificationType() Get Return Me.unsupportedCommodityClassificationField @@ -19528,7 +19528,7 @@ Namespace Peppol.BISBilling30CreditNote Me.unsupportedCommodityClassificationField = value End Set End Property - + ''' Public Property TotalCapacityDimension() As DimensionType Get @@ -19538,9 +19538,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalCapacityDimensionField = value End Set End Property - + ''' - _ + Public Property ShipmentStage() As ShipmentStageType() Get Return Me.shipmentStageField @@ -19549,9 +19549,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentStageField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -19560,7 +19560,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEventField = value End Set End Property - + ''' Public Property ResponsibleTransportServiceProviderParty() As PartyType Get @@ -19570,9 +19570,9 @@ Namespace Peppol.BISBilling30CreditNote Me.responsibleTransportServiceProviderPartyField = value End Set End Property - + ''' - _ + Public Property EnvironmentalEmission() As EnvironmentalEmissionType() Get Return Me.environmentalEmissionField @@ -19581,7 +19581,7 @@ Namespace Peppol.BISBilling30CreditNote Me.environmentalEmissionField = value End Set End Property - + ''' Public Property EstimatedDurationPeriod() As PeriodType Get @@ -19591,9 +19591,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDurationPeriodField = value End Set End Property - + ''' - _ + Public Property ScheduledServiceFrequency() As ServiceFrequencyType() Get Return Me.scheduledServiceFrequencyField @@ -19603,140 +19603,140 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportEquipmentType - + Private idField As IDType - + Private referencedConsignmentIDField() As ReferencedConsignmentIDType - + Private transportEquipmentTypeCodeField As TransportEquipmentTypeCodeType - + Private providerTypeCodeField As ProviderTypeCodeType - + Private ownerTypeCodeField As OwnerTypeCodeType - + Private sizeTypeCodeField As SizeTypeCodeType - + Private dispositionCodeField As DispositionCodeType - + Private fullnessIndicationCodeField As FullnessIndicationCodeType - + Private refrigerationOnIndicatorField As RefrigerationOnIndicatorType - + Private informationField() As InformationType - + Private returnabilityIndicatorField As ReturnabilityIndicatorType - + Private legalStatusIndicatorField As LegalStatusIndicatorType - + Private airFlowPercentField As AirFlowPercentType - + Private humidityPercentField As HumidityPercentType - + Private animalFoodApprovedIndicatorField As AnimalFoodApprovedIndicatorType - + Private humanFoodApprovedIndicatorField As HumanFoodApprovedIndicatorType - + Private dangerousGoodsApprovedIndicatorField As DangerousGoodsApprovedIndicatorType - + Private refrigeratedIndicatorField As RefrigeratedIndicatorType - + Private characteristicsField As CharacteristicsType - + Private damageRemarksField() As DamageRemarksType - + Private descriptionField() As DescriptionType - + Private specialTransportRequirementsField() As SpecialTransportRequirementsType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private tareWeightMeasureField As TareWeightMeasureType - + Private trackingDeviceCodeField As TrackingDeviceCodeType - + Private powerIndicatorField As PowerIndicatorType - + Private traceIDField As TraceIDType - + Private measurementDimensionField() As DimensionType - + Private transportEquipmentSealField() As TransportEquipmentSealType - + Private minimumTemperatureField As TemperatureType - + Private maximumTemperatureField As TemperatureType - + Private providerPartyField As PartyType - + Private loadingProofPartyField As PartyType - + Private supplierPartyField As SupplierPartyType - + Private ownerPartyField As PartyType - + Private operatingPartyField As PartyType - + Private loadingLocationField As LocationType1 - + Private unloadingLocationField As LocationType1 - + Private storageLocationField As LocationType1 - + Private positioningTransportEventField() As TransportEventType - + Private quarantineTransportEventField() As TransportEventType - + Private deliveryTransportEventField() As TransportEventType - + Private pickupTransportEventField() As TransportEventType - + Private handlingTransportEventField() As TransportEventType - + Private loadingTransportEventField() As TransportEventType - + Private transportEventField() As TransportEventType - + Private applicableTransportMeansField As TransportMeansType - + Private haulageTradingTermsField() As TradingTermsType - + Private hazardousGoodsTransitField() As HazardousGoodsTransitType - + Private packagedTransportHandlingUnitField() As TransportHandlingUnitType - + Private serviceAllowanceChargeField() As AllowanceChargeType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private attachedTransportEquipmentField() As TransportEquipmentType - + Private deliveryField As DeliveryType - + Private pickupField As PickupType - + Private despatchField As DespatchType - + Private shipmentDocumentReferenceField() As DocumentReferenceType - + Private containedInTransportEquipmentField() As TransportEquipmentType - + Private packageField() As PackageType - + Private goodsItemField() As GoodsItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19745,9 +19745,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ReferencedConsignmentID() As ReferencedConsignmentIDType() Get Return Me.referencedConsignmentIDField @@ -19756,9 +19756,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referencedConsignmentIDField = value End Set End Property - + ''' - _ + Public Property TransportEquipmentTypeCode() As TransportEquipmentTypeCodeType Get Return Me.transportEquipmentTypeCodeField @@ -19767,9 +19767,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEquipmentTypeCodeField = value End Set End Property - + ''' - _ + Public Property ProviderTypeCode() As ProviderTypeCodeType Get Return Me.providerTypeCodeField @@ -19778,9 +19778,9 @@ Namespace Peppol.BISBilling30CreditNote Me.providerTypeCodeField = value End Set End Property - + ''' - _ + Public Property OwnerTypeCode() As OwnerTypeCodeType Get Return Me.ownerTypeCodeField @@ -19789,9 +19789,9 @@ Namespace Peppol.BISBilling30CreditNote Me.ownerTypeCodeField = value End Set End Property - + ''' - _ + Public Property SizeTypeCode() As SizeTypeCodeType Get Return Me.sizeTypeCodeField @@ -19800,9 +19800,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sizeTypeCodeField = value End Set End Property - + ''' - _ + Public Property DispositionCode() As DispositionCodeType Get Return Me.dispositionCodeField @@ -19811,9 +19811,9 @@ Namespace Peppol.BISBilling30CreditNote Me.dispositionCodeField = value End Set End Property - + ''' - _ + Public Property FullnessIndicationCode() As FullnessIndicationCodeType Get Return Me.fullnessIndicationCodeField @@ -19822,9 +19822,9 @@ Namespace Peppol.BISBilling30CreditNote Me.fullnessIndicationCodeField = value End Set End Property - + ''' - _ + Public Property RefrigerationOnIndicator() As RefrigerationOnIndicatorType Get Return Me.refrigerationOnIndicatorField @@ -19833,9 +19833,9 @@ Namespace Peppol.BISBilling30CreditNote Me.refrigerationOnIndicatorField = value End Set End Property - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -19844,9 +19844,9 @@ Namespace Peppol.BISBilling30CreditNote Me.informationField = value End Set End Property - + ''' - _ + Public Property ReturnabilityIndicator() As ReturnabilityIndicatorType Get Return Me.returnabilityIndicatorField @@ -19855,9 +19855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.returnabilityIndicatorField = value End Set End Property - + ''' - _ + Public Property LegalStatusIndicator() As LegalStatusIndicatorType Get Return Me.legalStatusIndicatorField @@ -19866,9 +19866,9 @@ Namespace Peppol.BISBilling30CreditNote Me.legalStatusIndicatorField = value End Set End Property - + ''' - _ + Public Property AirFlowPercent() As AirFlowPercentType Get Return Me.airFlowPercentField @@ -19877,9 +19877,9 @@ Namespace Peppol.BISBilling30CreditNote Me.airFlowPercentField = value End Set End Property - + ''' - _ + Public Property HumidityPercent() As HumidityPercentType Get Return Me.humidityPercentField @@ -19888,9 +19888,9 @@ Namespace Peppol.BISBilling30CreditNote Me.humidityPercentField = value End Set End Property - + ''' - _ + Public Property AnimalFoodApprovedIndicator() As AnimalFoodApprovedIndicatorType Get Return Me.animalFoodApprovedIndicatorField @@ -19899,9 +19899,9 @@ Namespace Peppol.BISBilling30CreditNote Me.animalFoodApprovedIndicatorField = value End Set End Property - + ''' - _ + Public Property HumanFoodApprovedIndicator() As HumanFoodApprovedIndicatorType Get Return Me.humanFoodApprovedIndicatorField @@ -19910,9 +19910,9 @@ Namespace Peppol.BISBilling30CreditNote Me.humanFoodApprovedIndicatorField = value End Set End Property - + ''' - _ + Public Property DangerousGoodsApprovedIndicator() As DangerousGoodsApprovedIndicatorType Get Return Me.dangerousGoodsApprovedIndicatorField @@ -19921,9 +19921,9 @@ Namespace Peppol.BISBilling30CreditNote Me.dangerousGoodsApprovedIndicatorField = value End Set End Property - + ''' - _ + Public Property RefrigeratedIndicator() As RefrigeratedIndicatorType Get Return Me.refrigeratedIndicatorField @@ -19932,9 +19932,9 @@ Namespace Peppol.BISBilling30CreditNote Me.refrigeratedIndicatorField = value End Set End Property - + ''' - _ + Public Property Characteristics() As CharacteristicsType Get Return Me.characteristicsField @@ -19943,9 +19943,9 @@ Namespace Peppol.BISBilling30CreditNote Me.characteristicsField = value End Set End Property - + ''' - _ + Public Property DamageRemarks() As DamageRemarksType() Get Return Me.damageRemarksField @@ -19954,9 +19954,9 @@ Namespace Peppol.BISBilling30CreditNote Me.damageRemarksField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -19965,9 +19965,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property SpecialTransportRequirements() As SpecialTransportRequirementsType() Get Return Me.specialTransportRequirementsField @@ -19976,9 +19976,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specialTransportRequirementsField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -19987,9 +19987,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -19998,9 +19998,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property TareWeightMeasure() As TareWeightMeasureType Get Return Me.tareWeightMeasureField @@ -20009,9 +20009,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tareWeightMeasureField = value End Set End Property - + ''' - _ + Public Property TrackingDeviceCode() As TrackingDeviceCodeType Get Return Me.trackingDeviceCodeField @@ -20020,9 +20020,9 @@ Namespace Peppol.BISBilling30CreditNote Me.trackingDeviceCodeField = value End Set End Property - + ''' - _ + Public Property PowerIndicator() As PowerIndicatorType Get Return Me.powerIndicatorField @@ -20031,9 +20031,9 @@ Namespace Peppol.BISBilling30CreditNote Me.powerIndicatorField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -20042,9 +20042,9 @@ Namespace Peppol.BISBilling30CreditNote Me.traceIDField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -20053,9 +20053,9 @@ Namespace Peppol.BISBilling30CreditNote Me.measurementDimensionField = value End Set End Property - + ''' - _ + Public Property TransportEquipmentSeal() As TransportEquipmentSealType() Get Return Me.transportEquipmentSealField @@ -20064,7 +20064,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEquipmentSealField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -20074,7 +20074,7 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumTemperatureField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -20084,7 +20084,7 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumTemperatureField = value End Set End Property - + ''' Public Property ProviderParty() As PartyType Get @@ -20094,7 +20094,7 @@ Namespace Peppol.BISBilling30CreditNote Me.providerPartyField = value End Set End Property - + ''' Public Property LoadingProofParty() As PartyType Get @@ -20104,7 +20104,7 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingProofPartyField = value End Set End Property - + ''' Public Property SupplierParty() As SupplierPartyType Get @@ -20114,7 +20114,7 @@ Namespace Peppol.BISBilling30CreditNote Me.supplierPartyField = value End Set End Property - + ''' Public Property OwnerParty() As PartyType Get @@ -20124,7 +20124,7 @@ Namespace Peppol.BISBilling30CreditNote Me.ownerPartyField = value End Set End Property - + ''' Public Property OperatingParty() As PartyType Get @@ -20134,7 +20134,7 @@ Namespace Peppol.BISBilling30CreditNote Me.operatingPartyField = value End Set End Property - + ''' Public Property LoadingLocation() As LocationType1 Get @@ -20144,7 +20144,7 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingLocationField = value End Set End Property - + ''' Public Property UnloadingLocation() As LocationType1 Get @@ -20154,7 +20154,7 @@ Namespace Peppol.BISBilling30CreditNote Me.unloadingLocationField = value End Set End Property - + ''' Public Property StorageLocation() As LocationType1 Get @@ -20164,9 +20164,9 @@ Namespace Peppol.BISBilling30CreditNote Me.storageLocationField = value End Set End Property - + ''' - _ + Public Property PositioningTransportEvent() As TransportEventType() Get Return Me.positioningTransportEventField @@ -20175,9 +20175,9 @@ Namespace Peppol.BISBilling30CreditNote Me.positioningTransportEventField = value End Set End Property - + ''' - _ + Public Property QuarantineTransportEvent() As TransportEventType() Get Return Me.quarantineTransportEventField @@ -20186,9 +20186,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quarantineTransportEventField = value End Set End Property - + ''' - _ + Public Property DeliveryTransportEvent() As TransportEventType() Get Return Me.deliveryTransportEventField @@ -20197,9 +20197,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTransportEventField = value End Set End Property - + ''' - _ + Public Property PickupTransportEvent() As TransportEventType() Get Return Me.pickupTransportEventField @@ -20208,9 +20208,9 @@ Namespace Peppol.BISBilling30CreditNote Me.pickupTransportEventField = value End Set End Property - + ''' - _ + Public Property HandlingTransportEvent() As TransportEventType() Get Return Me.handlingTransportEventField @@ -20219,9 +20219,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingTransportEventField = value End Set End Property - + ''' - _ + Public Property LoadingTransportEvent() As TransportEventType() Get Return Me.loadingTransportEventField @@ -20230,9 +20230,9 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingTransportEventField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -20241,7 +20241,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEventField = value End Set End Property - + ''' Public Property ApplicableTransportMeans() As TransportMeansType Get @@ -20251,9 +20251,9 @@ Namespace Peppol.BISBilling30CreditNote Me.applicableTransportMeansField = value End Set End Property - + ''' - _ + Public Property HaulageTradingTerms() As TradingTermsType() Get Return Me.haulageTradingTermsField @@ -20262,9 +20262,9 @@ Namespace Peppol.BISBilling30CreditNote Me.haulageTradingTermsField = value End Set End Property - + ''' - _ + Public Property HazardousGoodsTransit() As HazardousGoodsTransitType() Get Return Me.hazardousGoodsTransitField @@ -20273,9 +20273,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousGoodsTransitField = value End Set End Property - + ''' - _ + Public Property PackagedTransportHandlingUnit() As TransportHandlingUnitType() Get Return Me.packagedTransportHandlingUnitField @@ -20284,9 +20284,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packagedTransportHandlingUnitField = value End Set End Property - + ''' - _ + Public Property ServiceAllowanceCharge() As AllowanceChargeType() Get Return Me.serviceAllowanceChargeField @@ -20295,9 +20295,9 @@ Namespace Peppol.BISBilling30CreditNote Me.serviceAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -20306,9 +20306,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freightAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property AttachedTransportEquipment() As TransportEquipmentType() Get Return Me.attachedTransportEquipmentField @@ -20317,7 +20317,7 @@ Namespace Peppol.BISBilling30CreditNote Me.attachedTransportEquipmentField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -20327,7 +20327,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' Public Property Pickup() As PickupType Get @@ -20337,7 +20337,7 @@ Namespace Peppol.BISBilling30CreditNote Me.pickupField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -20347,9 +20347,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchField = value End Set End Property - + ''' - _ + Public Property ShipmentDocumentReference() As DocumentReferenceType() Get Return Me.shipmentDocumentReferenceField @@ -20358,9 +20358,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ContainedInTransportEquipment() As TransportEquipmentType() Get Return Me.containedInTransportEquipmentField @@ -20369,9 +20369,9 @@ Namespace Peppol.BISBilling30CreditNote Me.containedInTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property Package() As PackageType() Get Return Me.packageField @@ -20380,9 +20380,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packageField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -20392,28 +20392,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DimensionType - + Private attributeIDField As AttributeIDType - + Private measureField As MeasureType2 - + Private descriptionField() As DescriptionType - + Private minimumMeasureField As MinimumMeasureType - + Private maximumMeasureField As MaximumMeasureType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -20422,9 +20422,9 @@ Namespace Peppol.BISBilling30CreditNote Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property Measure() As MeasureType2 Get Return Me.measureField @@ -20433,9 +20433,9 @@ Namespace Peppol.BISBilling30CreditNote Me.measureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -20444,9 +20444,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property MinimumMeasure() As MinimumMeasureType Get Return Me.minimumMeasureField @@ -20455,9 +20455,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumMeasureField = value End Set End Property - + ''' - _ + Public Property MaximumMeasure() As MaximumMeasureType Get Return Me.maximumMeasureField @@ -20467,28 +20467,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportEquipmentSealType - + Private idField As IDType - + Private sealIssuerTypeCodeField As SealIssuerTypeCodeType - + Private conditionField As ConditionType - + Private sealStatusCodeField As SealStatusCodeType - + Private sealingPartyTypeField As SealingPartyTypeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -20497,9 +20497,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SealIssuerTypeCode() As SealIssuerTypeCodeType Get Return Me.sealIssuerTypeCodeField @@ -20508,9 +20508,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sealIssuerTypeCodeField = value End Set End Property - + ''' - _ + Public Property Condition() As ConditionType Get Return Me.conditionField @@ -20519,9 +20519,9 @@ Namespace Peppol.BISBilling30CreditNote Me.conditionField = value End Set End Property - + ''' - _ + Public Property SealStatusCode() As SealStatusCodeType Get Return Me.sealStatusCodeField @@ -20530,9 +20530,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sealStatusCodeField = value End Set End Property - + ''' - _ + Public Property SealingPartyType() As SealingPartyTypeType Get Return Me.sealingPartyTypeField @@ -20542,24 +20542,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TemperatureType - + Private attributeIDField As AttributeIDType - + Private measureField As MeasureType2 - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -20568,9 +20568,9 @@ Namespace Peppol.BISBilling30CreditNote Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property Measure() As MeasureType2 Get Return Me.measureField @@ -20579,9 +20579,9 @@ Namespace Peppol.BISBilling30CreditNote Me.measureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -20591,32 +20591,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SupplierPartyType - + Private customerAssignedAccountIDField As CustomerAssignedAccountIDType - + Private additionalAccountIDField() As AdditionalAccountIDType - + Private dataSendingCapabilityField As DataSendingCapabilityType - + Private partyField As PartyType - + Private despatchContactField As ContactType - + Private accountingContactField As ContactType - + Private sellerContactField As ContactType - + ''' - _ + Public Property CustomerAssignedAccountID() As CustomerAssignedAccountIDType Get Return Me.customerAssignedAccountIDField @@ -20625,9 +20625,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customerAssignedAccountIDField = value End Set End Property - + ''' - _ + Public Property AdditionalAccountID() As AdditionalAccountIDType() Get Return Me.additionalAccountIDField @@ -20636,9 +20636,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalAccountIDField = value End Set End Property - + ''' - _ + Public Property DataSendingCapability() As DataSendingCapabilityType Get Return Me.dataSendingCapabilityField @@ -20647,7 +20647,7 @@ Namespace Peppol.BISBilling30CreditNote Me.dataSendingCapabilityField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -20657,7 +20657,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyField = value End Set End Property - + ''' Public Property DespatchContact() As ContactType Get @@ -20667,7 +20667,7 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchContactField = value End Set End Property - + ''' Public Property AccountingContact() As ContactType Get @@ -20677,7 +20677,7 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingContactField = value End Set End Property - + ''' Public Property SellerContact() As ContactType Get @@ -20688,44 +20688,44 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportMeansType - + Private journeyIDField As JourneyIDType - + Private registrationNationalityIDField As RegistrationNationalityIDType - + Private registrationNationalityField() As RegistrationNationalityType - + Private directionCodeField As DirectionCodeType - + Private transportMeansTypeCodeField As TransportMeansTypeCodeType - + Private tradeServiceCodeField As TradeServiceCodeType - + Private stowageField As StowageType - + Private airTransportField As AirTransportType - + Private roadTransportField As RoadTransportType - + Private railTransportField As RailTransportType - + Private maritimeTransportField As MaritimeTransportType - + Private ownerPartyField As PartyType - + Private measurementDimensionField() As DimensionType - + ''' - _ + Public Property JourneyID() As JourneyIDType Get Return Me.journeyIDField @@ -20734,9 +20734,9 @@ Namespace Peppol.BISBilling30CreditNote Me.journeyIDField = value End Set End Property - + ''' - _ + Public Property RegistrationNationalityID() As RegistrationNationalityIDType Get Return Me.registrationNationalityIDField @@ -20745,9 +20745,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationNationalityIDField = value End Set End Property - + ''' - _ + Public Property RegistrationNationality() As RegistrationNationalityType() Get Return Me.registrationNationalityField @@ -20756,9 +20756,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationNationalityField = value End Set End Property - + ''' - _ + Public Property DirectionCode() As DirectionCodeType Get Return Me.directionCodeField @@ -20767,9 +20767,9 @@ Namespace Peppol.BISBilling30CreditNote Me.directionCodeField = value End Set End Property - + ''' - _ + Public Property TransportMeansTypeCode() As TransportMeansTypeCodeType Get Return Me.transportMeansTypeCodeField @@ -20778,9 +20778,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportMeansTypeCodeField = value End Set End Property - + ''' - _ + Public Property TradeServiceCode() As TradeServiceCodeType Get Return Me.tradeServiceCodeField @@ -20789,7 +20789,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tradeServiceCodeField = value End Set End Property - + ''' Public Property Stowage() As StowageType Get @@ -20799,7 +20799,7 @@ Namespace Peppol.BISBilling30CreditNote Me.stowageField = value End Set End Property - + ''' Public Property AirTransport() As AirTransportType Get @@ -20809,7 +20809,7 @@ Namespace Peppol.BISBilling30CreditNote Me.airTransportField = value End Set End Property - + ''' Public Property RoadTransport() As RoadTransportType Get @@ -20819,7 +20819,7 @@ Namespace Peppol.BISBilling30CreditNote Me.roadTransportField = value End Set End Property - + ''' Public Property RailTransport() As RailTransportType Get @@ -20829,7 +20829,7 @@ Namespace Peppol.BISBilling30CreditNote Me.railTransportField = value End Set End Property - + ''' Public Property MaritimeTransport() As MaritimeTransportType Get @@ -20839,7 +20839,7 @@ Namespace Peppol.BISBilling30CreditNote Me.maritimeTransportField = value End Set End Property - + ''' Public Property OwnerParty() As PartyType Get @@ -20849,9 +20849,9 @@ Namespace Peppol.BISBilling30CreditNote Me.ownerPartyField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -20861,24 +20861,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class StowageType - + Private locationIDField As LocationIDType - + Private locationField() As LocationType - + Private measurementDimensionField() As DimensionType - + ''' - _ + Public Property LocationID() As LocationIDType Get Return Me.locationIDField @@ -20887,9 +20887,9 @@ Namespace Peppol.BISBilling30CreditNote Me.locationIDField = value End Set End Property - + ''' - _ + Public Property Location() As LocationType() Get Return Me.locationField @@ -20898,9 +20898,9 @@ Namespace Peppol.BISBilling30CreditNote Me.locationField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -20910,20 +20910,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AirTransportType - + Private aircraftIDField As AircraftIDType - + ''' - _ + Public Property AircraftID() As AircraftIDType Get Return Me.aircraftIDField @@ -20933,20 +20933,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RoadTransportType - + Private licensePlateIDField As LicensePlateIDType - + ''' - _ + Public Property LicensePlateID() As LicensePlateIDType Get Return Me.licensePlateIDField @@ -20956,22 +20956,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RailTransportType - + Private trainIDField As TrainIDType - + Private railCarIDField As RailCarIDType - + ''' - _ + Public Property TrainID() As TrainIDType Get Return Me.trainIDField @@ -20980,9 +20980,9 @@ Namespace Peppol.BISBilling30CreditNote Me.trainIDField = value End Set End Property - + ''' - _ + Public Property RailCarID() As RailCarIDType Get Return Me.railCarIDField @@ -20992,34 +20992,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MaritimeTransportType - + Private vesselIDField As VesselIDType - + Private vesselNameField As VesselNameType - + Private radioCallSignIDField As RadioCallSignIDType - + Private shipsRequirementsField() As ShipsRequirementsType - + Private grossTonnageMeasureField As GrossTonnageMeasureType - + Private netTonnageMeasureField As NetTonnageMeasureType - + Private registryCertificateDocumentReferenceField As DocumentReferenceType - + Private registryPortLocationField As LocationType1 - + ''' - _ + Public Property VesselID() As VesselIDType Get Return Me.vesselIDField @@ -21028,9 +21028,9 @@ Namespace Peppol.BISBilling30CreditNote Me.vesselIDField = value End Set End Property - + ''' - _ + Public Property VesselName() As VesselNameType Get Return Me.vesselNameField @@ -21039,9 +21039,9 @@ Namespace Peppol.BISBilling30CreditNote Me.vesselNameField = value End Set End Property - + ''' - _ + Public Property RadioCallSignID() As RadioCallSignIDType Get Return Me.radioCallSignIDField @@ -21050,9 +21050,9 @@ Namespace Peppol.BISBilling30CreditNote Me.radioCallSignIDField = value End Set End Property - + ''' - _ + Public Property ShipsRequirements() As ShipsRequirementsType() Get Return Me.shipsRequirementsField @@ -21061,9 +21061,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shipsRequirementsField = value End Set End Property - + ''' - _ + Public Property GrossTonnageMeasure() As GrossTonnageMeasureType Get Return Me.grossTonnageMeasureField @@ -21072,9 +21072,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossTonnageMeasureField = value End Set End Property - + ''' - _ + Public Property NetTonnageMeasure() As NetTonnageMeasureType Get Return Me.netTonnageMeasureField @@ -21083,7 +21083,7 @@ Namespace Peppol.BISBilling30CreditNote Me.netTonnageMeasureField = value End Set End Property - + ''' Public Property RegistryCertificateDocumentReference() As DocumentReferenceType Get @@ -21093,7 +21093,7 @@ Namespace Peppol.BISBilling30CreditNote Me.registryCertificateDocumentReferenceField = value End Set End Property - + ''' Public Property RegistryPortLocation() As LocationType1 Get @@ -21104,24 +21104,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TradingTermsType - + Private informationField() As InformationType - + Private referenceField As ReferenceType - + Private applicableAddressField As AddressType - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -21130,9 +21130,9 @@ Namespace Peppol.BISBilling30CreditNote Me.informationField = value End Set End Property - + ''' - _ + Public Property Reference() As ReferenceType Get Return Me.referenceField @@ -21141,7 +21141,7 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceField = value End Set End Property - + ''' Public Property ApplicableAddress() As AddressType Get @@ -21152,32 +21152,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class HazardousGoodsTransitType - + Private transportEmergencyCardCodeField As TransportEmergencyCardCodeType - + Private packingCriteriaCodeField As PackingCriteriaCodeType - + Private hazardousRegulationCodeField As HazardousRegulationCodeType - + Private inhalationToxicityZoneCodeField As InhalationToxicityZoneCodeType - + Private transportAuthorizationCodeField As TransportAuthorizationCodeType - + Private maximumTemperatureField As TemperatureType - + Private minimumTemperatureField As TemperatureType - + ''' - _ + Public Property TransportEmergencyCardCode() As TransportEmergencyCardCodeType Get Return Me.transportEmergencyCardCodeField @@ -21186,9 +21186,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEmergencyCardCodeField = value End Set End Property - + ''' - _ + Public Property PackingCriteriaCode() As PackingCriteriaCodeType Get Return Me.packingCriteriaCodeField @@ -21197,9 +21197,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packingCriteriaCodeField = value End Set End Property - + ''' - _ + Public Property HazardousRegulationCode() As HazardousRegulationCodeType Get Return Me.hazardousRegulationCodeField @@ -21208,9 +21208,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousRegulationCodeField = value End Set End Property - + ''' - _ + Public Property InhalationToxicityZoneCode() As InhalationToxicityZoneCodeType Get Return Me.inhalationToxicityZoneCodeField @@ -21219,9 +21219,9 @@ Namespace Peppol.BISBilling30CreditNote Me.inhalationToxicityZoneCodeField = value End Set End Property - + ''' - _ + Public Property TransportAuthorizationCode() As TransportAuthorizationCodeType Get Return Me.transportAuthorizationCodeField @@ -21230,7 +21230,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportAuthorizationCodeField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -21240,7 +21240,7 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumTemperatureField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -21251,72 +21251,72 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportHandlingUnitType - + Private idField As IDType - + Private transportHandlingUnitTypeCodeField As TransportHandlingUnitTypeCodeType - + Private handlingCodeField As HandlingCodeType - + Private handlingInstructionsField() As HandlingInstructionsType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private totalGoodsItemQuantityField As TotalGoodsItemQuantityType - + Private totalPackageQuantityField As TotalPackageQuantityType - + Private damageRemarksField() As DamageRemarksType - + Private shippingMarksField() As ShippingMarksType - + Private traceIDField As TraceIDType - + Private handlingUnitDespatchLineField() As DespatchLineType - + Private actualPackageField() As PackageType - + Private receivedHandlingUnitReceiptLineField() As ReceiptLineType - + Private transportEquipmentField() As TransportEquipmentType - + Private transportMeansField() As TransportMeansType - + Private hazardousGoodsTransitField() As HazardousGoodsTransitType - + Private measurementDimensionField() As DimensionType - + Private minimumTemperatureField As TemperatureType - + Private maximumTemperatureField As TemperatureType - + Private goodsItemField() As GoodsItemType - + Private floorSpaceMeasurementDimensionField As DimensionType - + Private palletSpaceMeasurementDimensionField As DimensionType - + Private shipmentDocumentReferenceField() As DocumentReferenceType - + Private statusField() As StatusType - + Private customsDeclarationField() As CustomsDeclarationType - + Private referencedShipmentField() As ShipmentType - + Private packageField() As PackageType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -21325,9 +21325,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property TransportHandlingUnitTypeCode() As TransportHandlingUnitTypeCodeType Get Return Me.transportHandlingUnitTypeCodeField @@ -21336,9 +21336,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportHandlingUnitTypeCodeField = value End Set End Property - + ''' - _ + Public Property HandlingCode() As HandlingCodeType Get Return Me.handlingCodeField @@ -21347,9 +21347,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingCodeField = value End Set End Property - + ''' - _ + Public Property HandlingInstructions() As HandlingInstructionsType() Get Return Me.handlingInstructionsField @@ -21358,9 +21358,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingInstructionsField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -21369,9 +21369,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property TotalGoodsItemQuantity() As TotalGoodsItemQuantityType Get Return Me.totalGoodsItemQuantityField @@ -21380,9 +21380,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalGoodsItemQuantityField = value End Set End Property - + ''' - _ + Public Property TotalPackageQuantity() As TotalPackageQuantityType Get Return Me.totalPackageQuantityField @@ -21391,9 +21391,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalPackageQuantityField = value End Set End Property - + ''' - _ + Public Property DamageRemarks() As DamageRemarksType() Get Return Me.damageRemarksField @@ -21402,9 +21402,9 @@ Namespace Peppol.BISBilling30CreditNote Me.damageRemarksField = value End Set End Property - + ''' - _ + Public Property ShippingMarks() As ShippingMarksType() Get Return Me.shippingMarksField @@ -21413,9 +21413,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shippingMarksField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -21424,9 +21424,9 @@ Namespace Peppol.BISBilling30CreditNote Me.traceIDField = value End Set End Property - + ''' - _ + Public Property HandlingUnitDespatchLine() As DespatchLineType() Get Return Me.handlingUnitDespatchLineField @@ -21435,9 +21435,9 @@ Namespace Peppol.BISBilling30CreditNote Me.handlingUnitDespatchLineField = value End Set End Property - + ''' - _ + Public Property ActualPackage() As PackageType() Get Return Me.actualPackageField @@ -21446,9 +21446,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualPackageField = value End Set End Property - + ''' - _ + Public Property ReceivedHandlingUnitReceiptLine() As ReceiptLineType() Get Return Me.receivedHandlingUnitReceiptLineField @@ -21457,9 +21457,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedHandlingUnitReceiptLineField = value End Set End Property - + ''' - _ + Public Property TransportEquipment() As TransportEquipmentType() Get Return Me.transportEquipmentField @@ -21468,9 +21468,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEquipmentField = value End Set End Property - + ''' - _ + Public Property TransportMeans() As TransportMeansType() Get Return Me.transportMeansField @@ -21479,9 +21479,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportMeansField = value End Set End Property - + ''' - _ + Public Property HazardousGoodsTransit() As HazardousGoodsTransitType() Get Return Me.hazardousGoodsTransitField @@ -21490,9 +21490,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousGoodsTransitField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -21501,7 +21501,7 @@ Namespace Peppol.BISBilling30CreditNote Me.measurementDimensionField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -21511,7 +21511,7 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumTemperatureField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -21521,9 +21521,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumTemperatureField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -21532,7 +21532,7 @@ Namespace Peppol.BISBilling30CreditNote Me.goodsItemField = value End Set End Property - + ''' Public Property FloorSpaceMeasurementDimension() As DimensionType Get @@ -21542,7 +21542,7 @@ Namespace Peppol.BISBilling30CreditNote Me.floorSpaceMeasurementDimensionField = value End Set End Property - + ''' Public Property PalletSpaceMeasurementDimension() As DimensionType Get @@ -21552,9 +21552,9 @@ Namespace Peppol.BISBilling30CreditNote Me.palletSpaceMeasurementDimensionField = value End Set End Property - + ''' - _ + Public Property ShipmentDocumentReference() As DocumentReferenceType() Get Return Me.shipmentDocumentReferenceField @@ -21563,9 +21563,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property Status() As StatusType() Get Return Me.statusField @@ -21574,9 +21574,9 @@ Namespace Peppol.BISBilling30CreditNote Me.statusField = value End Set End Property - + ''' - _ + Public Property CustomsDeclaration() As CustomsDeclarationType() Get Return Me.customsDeclarationField @@ -21585,9 +21585,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customsDeclarationField = value End Set End Property - + ''' - _ + Public Property ReferencedShipment() As ShipmentType() Get Return Me.referencedShipmentField @@ -21596,9 +21596,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referencedShipmentField = value End Set End Property - + ''' - _ + Public Property Package() As PackageType() Get Return Me.packageField @@ -21608,46 +21608,46 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DespatchLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private lineStatusCodeField As LineStatusCodeType - + Private deliveredQuantityField As DeliveredQuantityType - + Private backorderQuantityField As BackorderQuantityType - + Private backorderReasonField() As BackorderReasonType - + Private outstandingQuantityField As OutstandingQuantityType - + Private outstandingReasonField() As OutstandingReasonType - + Private oversupplyQuantityField As OversupplyQuantityType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField As ItemType - + Private shipmentField() As ShipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -21656,9 +21656,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -21667,9 +21667,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -21678,9 +21678,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -21689,9 +21689,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineStatusCodeField = value End Set End Property - + ''' - _ + Public Property DeliveredQuantity() As DeliveredQuantityType Get Return Me.deliveredQuantityField @@ -21700,9 +21700,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveredQuantityField = value End Set End Property - + ''' - _ + Public Property BackorderQuantity() As BackorderQuantityType Get Return Me.backorderQuantityField @@ -21711,9 +21711,9 @@ Namespace Peppol.BISBilling30CreditNote Me.backorderQuantityField = value End Set End Property - + ''' - _ + Public Property BackorderReason() As BackorderReasonType() Get Return Me.backorderReasonField @@ -21722,9 +21722,9 @@ Namespace Peppol.BISBilling30CreditNote Me.backorderReasonField = value End Set End Property - + ''' - _ + Public Property OutstandingQuantity() As OutstandingQuantityType Get Return Me.outstandingQuantityField @@ -21733,9 +21733,9 @@ Namespace Peppol.BISBilling30CreditNote Me.outstandingQuantityField = value End Set End Property - + ''' - _ + Public Property OutstandingReason() As OutstandingReasonType() Get Return Me.outstandingReasonField @@ -21744,9 +21744,9 @@ Namespace Peppol.BISBilling30CreditNote Me.outstandingReasonField = value End Set End Property - + ''' - _ + Public Property OversupplyQuantity() As OversupplyQuantityType Get Return Me.oversupplyQuantityField @@ -21755,9 +21755,9 @@ Namespace Peppol.BISBilling30CreditNote Me.oversupplyQuantityField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -21766,9 +21766,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -21777,7 +21777,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -21787,9 +21787,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property Shipment() As ShipmentType() Get Return Me.shipmentField @@ -21799,28 +21799,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class OrderLineReferenceType - + Private lineIDField As LineIDType - + Private salesOrderLineIDField As SalesOrderLineIDType - + Private uUIDField As UUIDType - + Private lineStatusCodeField As LineStatusCodeType - + Private orderReferenceField As OrderReferenceType - + ''' - _ + Public Property LineID() As LineIDType Get Return Me.lineIDField @@ -21829,9 +21829,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineIDField = value End Set End Property - + ''' - _ + Public Property SalesOrderLineID() As SalesOrderLineIDType Get Return Me.salesOrderLineIDField @@ -21840,9 +21840,9 @@ Namespace Peppol.BISBilling30CreditNote Me.salesOrderLineIDField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -21851,9 +21851,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -21862,7 +21862,7 @@ Namespace Peppol.BISBilling30CreditNote Me.lineStatusCodeField = value End Set End Property - + ''' Public Property OrderReference() As OrderReferenceType Get @@ -21873,36 +21873,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class OrderReferenceType - + Private idField As IDType - + Private salesOrderIDField As SalesOrderIDType - + Private copyIndicatorField As CopyIndicatorType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private customerReferenceField As CustomerReferenceType - + Private orderTypeCodeField As OrderTypeCodeType - + Private documentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -21911,9 +21911,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SalesOrderID() As SalesOrderIDType Get Return Me.salesOrderIDField @@ -21922,9 +21922,9 @@ Namespace Peppol.BISBilling30CreditNote Me.salesOrderIDField = value End Set End Property - + ''' - _ + Public Property CopyIndicator() As CopyIndicatorType Get Return Me.copyIndicatorField @@ -21933,9 +21933,9 @@ Namespace Peppol.BISBilling30CreditNote Me.copyIndicatorField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -21944,9 +21944,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -21955,9 +21955,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -21966,9 +21966,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property CustomerReference() As CustomerReferenceType Get Return Me.customerReferenceField @@ -21977,9 +21977,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customerReferenceField = value End Set End Property - + ''' - _ + Public Property OrderTypeCode() As OrderTypeCodeType Get Return Me.orderTypeCodeField @@ -21988,7 +21988,7 @@ Namespace Peppol.BISBilling30CreditNote Me.orderTypeCodeField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -21999,78 +21999,78 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemType - + Private descriptionField() As DescriptionType - + Private packQuantityField As PackQuantityType - + Private packSizeNumericField As PackSizeNumericType - + Private catalogueIndicatorField As CatalogueIndicatorType - + Private nameField As NameType1 - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private additionalInformationField() As AdditionalInformationType - + Private keywordField() As KeywordType - + Private brandNameField() As BrandNameType - + Private modelNameField() As ModelNameType - + Private buyersItemIdentificationField As ItemIdentificationType - + Private sellersItemIdentificationField As ItemIdentificationType - + Private manufacturersItemIdentificationField() As ItemIdentificationType - + Private standardItemIdentificationField As ItemIdentificationType - + Private catalogueItemIdentificationField As ItemIdentificationType - + Private additionalItemIdentificationField() As ItemIdentificationType - + Private catalogueDocumentReferenceField As DocumentReferenceType - + Private itemSpecificationDocumentReferenceField() As DocumentReferenceType - + Private originCountryField As CountryType - + Private commodityClassificationField() As CommodityClassificationType - + Private transactionConditionsField() As TransactionConditionsType - + Private hazardousItemField() As HazardousItemType - + Private classifiedTaxCategoryField() As TaxCategoryType - + Private additionalItemPropertyField() As ItemPropertyType - + Private manufacturerPartyField() As PartyType - + Private informationContentProviderPartyField As PartyType - + Private originAddressField() As AddressType - + Private itemInstanceField() As ItemInstanceType - + Private certificateField() As CertificateType - + Private dimensionField() As DimensionType - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -22079,9 +22079,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property PackQuantity() As PackQuantityType Get Return Me.packQuantityField @@ -22090,9 +22090,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packQuantityField = value End Set End Property - + ''' - _ + Public Property PackSizeNumeric() As PackSizeNumericType Get Return Me.packSizeNumericField @@ -22101,9 +22101,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packSizeNumericField = value End Set End Property - + ''' - _ + Public Property CatalogueIndicator() As CatalogueIndicatorType Get Return Me.catalogueIndicatorField @@ -22112,9 +22112,9 @@ Namespace Peppol.BISBilling30CreditNote Me.catalogueIndicatorField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -22123,9 +22123,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -22134,9 +22134,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property AdditionalInformation() As AdditionalInformationType() Get Return Me.additionalInformationField @@ -22145,9 +22145,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalInformationField = value End Set End Property - + ''' - _ + Public Property Keyword() As KeywordType() Get Return Me.keywordField @@ -22156,9 +22156,9 @@ Namespace Peppol.BISBilling30CreditNote Me.keywordField = value End Set End Property - + ''' - _ + Public Property BrandName() As BrandNameType() Get Return Me.brandNameField @@ -22167,9 +22167,9 @@ Namespace Peppol.BISBilling30CreditNote Me.brandNameField = value End Set End Property - + ''' - _ + Public Property ModelName() As ModelNameType() Get Return Me.modelNameField @@ -22178,7 +22178,7 @@ Namespace Peppol.BISBilling30CreditNote Me.modelNameField = value End Set End Property - + ''' Public Property BuyersItemIdentification() As ItemIdentificationType Get @@ -22188,7 +22188,7 @@ Namespace Peppol.BISBilling30CreditNote Me.buyersItemIdentificationField = value End Set End Property - + ''' Public Property SellersItemIdentification() As ItemIdentificationType Get @@ -22198,9 +22198,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sellersItemIdentificationField = value End Set End Property - + ''' - _ + Public Property ManufacturersItemIdentification() As ItemIdentificationType() Get Return Me.manufacturersItemIdentificationField @@ -22209,7 +22209,7 @@ Namespace Peppol.BISBilling30CreditNote Me.manufacturersItemIdentificationField = value End Set End Property - + ''' Public Property StandardItemIdentification() As ItemIdentificationType Get @@ -22219,7 +22219,7 @@ Namespace Peppol.BISBilling30CreditNote Me.standardItemIdentificationField = value End Set End Property - + ''' Public Property CatalogueItemIdentification() As ItemIdentificationType Get @@ -22229,9 +22229,9 @@ Namespace Peppol.BISBilling30CreditNote Me.catalogueItemIdentificationField = value End Set End Property - + ''' - _ + Public Property AdditionalItemIdentification() As ItemIdentificationType() Get Return Me.additionalItemIdentificationField @@ -22240,7 +22240,7 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalItemIdentificationField = value End Set End Property - + ''' Public Property CatalogueDocumentReference() As DocumentReferenceType Get @@ -22250,9 +22250,9 @@ Namespace Peppol.BISBilling30CreditNote Me.catalogueDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ItemSpecificationDocumentReference() As DocumentReferenceType() Get Return Me.itemSpecificationDocumentReferenceField @@ -22261,7 +22261,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemSpecificationDocumentReferenceField = value End Set End Property - + ''' Public Property OriginCountry() As CountryType Get @@ -22271,9 +22271,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originCountryField = value End Set End Property - + ''' - _ + Public Property CommodityClassification() As CommodityClassificationType() Get Return Me.commodityClassificationField @@ -22282,9 +22282,9 @@ Namespace Peppol.BISBilling30CreditNote Me.commodityClassificationField = value End Set End Property - + ''' - _ + Public Property TransactionConditions() As TransactionConditionsType() Get Return Me.transactionConditionsField @@ -22293,9 +22293,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transactionConditionsField = value End Set End Property - + ''' - _ + Public Property HazardousItem() As HazardousItemType() Get Return Me.hazardousItemField @@ -22304,9 +22304,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousItemField = value End Set End Property - + ''' - _ + Public Property ClassifiedTaxCategory() As TaxCategoryType() Get Return Me.classifiedTaxCategoryField @@ -22315,9 +22315,9 @@ Namespace Peppol.BISBilling30CreditNote Me.classifiedTaxCategoryField = value End Set End Property - + ''' - _ + Public Property AdditionalItemProperty() As ItemPropertyType() Get Return Me.additionalItemPropertyField @@ -22326,9 +22326,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalItemPropertyField = value End Set End Property - + ''' - _ + Public Property ManufacturerParty() As PartyType() Get Return Me.manufacturerPartyField @@ -22337,7 +22337,7 @@ Namespace Peppol.BISBilling30CreditNote Me.manufacturerPartyField = value End Set End Property - + ''' Public Property InformationContentProviderParty() As PartyType Get @@ -22347,9 +22347,9 @@ Namespace Peppol.BISBilling30CreditNote Me.informationContentProviderPartyField = value End Set End Property - + ''' - _ + Public Property OriginAddress() As AddressType() Get Return Me.originAddressField @@ -22358,9 +22358,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originAddressField = value End Set End Property - + ''' - _ + Public Property ItemInstance() As ItemInstanceType() Get Return Me.itemInstanceField @@ -22369,9 +22369,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemInstanceField = value End Set End Property - + ''' - _ + Public Property Certificate() As CertificateType() Get Return Me.certificateField @@ -22380,9 +22380,9 @@ Namespace Peppol.BISBilling30CreditNote Me.certificateField = value End Set End Property - + ''' - _ + Public Property Dimension() As DimensionType() Get Return Me.dimensionField @@ -22392,30 +22392,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemIdentificationType - + Private idField As IDType - + Private extendedIDField As ExtendedIDType - + Private barcodeSymbologyIDField As BarcodeSymbologyIDType - + Private physicalAttributeField() As PhysicalAttributeType - + Private measurementDimensionField() As DimensionType - + Private issuerPartyField As PartyType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -22424,9 +22424,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ExtendedID() As ExtendedIDType Get Return Me.extendedIDField @@ -22435,9 +22435,9 @@ Namespace Peppol.BISBilling30CreditNote Me.extendedIDField = value End Set End Property - + ''' - _ + Public Property BarcodeSymbologyID() As BarcodeSymbologyIDType Get Return Me.barcodeSymbologyIDField @@ -22446,9 +22446,9 @@ Namespace Peppol.BISBilling30CreditNote Me.barcodeSymbologyIDField = value End Set End Property - + ''' - _ + Public Property PhysicalAttribute() As PhysicalAttributeType() Get Return Me.physicalAttributeField @@ -22457,9 +22457,9 @@ Namespace Peppol.BISBilling30CreditNote Me.physicalAttributeField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -22468,7 +22468,7 @@ Namespace Peppol.BISBilling30CreditNote Me.measurementDimensionField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -22479,26 +22479,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PhysicalAttributeType - + Private attributeIDField As AttributeIDType - + Private positionCodeField As PositionCodeType - + Private descriptionCodeField As DescriptionCodeType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -22507,9 +22507,9 @@ Namespace Peppol.BISBilling30CreditNote Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property PositionCode() As PositionCodeType Get Return Me.positionCodeField @@ -22518,9 +22518,9 @@ Namespace Peppol.BISBilling30CreditNote Me.positionCodeField = value End Set End Property - + ''' - _ + Public Property DescriptionCode() As DescriptionCodeType Get Return Me.descriptionCodeField @@ -22529,9 +22529,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -22541,26 +22541,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CommodityClassificationType - + Private natureCodeField As NatureCodeType - + Private cargoTypeCodeField As CargoTypeCodeType - + Private commodityCodeField As CommodityCodeType - + Private itemClassificationCodeField As ItemClassificationCodeType - + ''' - _ + Public Property NatureCode() As NatureCodeType Get Return Me.natureCodeField @@ -22569,9 +22569,9 @@ Namespace Peppol.BISBilling30CreditNote Me.natureCodeField = value End Set End Property - + ''' - _ + Public Property CargoTypeCode() As CargoTypeCodeType Get Return Me.cargoTypeCodeField @@ -22580,9 +22580,9 @@ Namespace Peppol.BISBilling30CreditNote Me.cargoTypeCodeField = value End Set End Property - + ''' - _ + Public Property CommodityCode() As CommodityCodeType Get Return Me.commodityCodeField @@ -22591,9 +22591,9 @@ Namespace Peppol.BISBilling30CreditNote Me.commodityCodeField = value End Set End Property - + ''' - _ + Public Property ItemClassificationCode() As ItemClassificationCodeType Get Return Me.itemClassificationCodeField @@ -22603,26 +22603,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransactionConditionsType - + Private idField As IDType - + Private actionCodeField As ActionCodeType - + Private descriptionField() As DescriptionType - + Private documentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -22631,9 +22631,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ActionCode() As ActionCodeType Get Return Me.actionCodeField @@ -22642,9 +22642,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actionCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -22653,9 +22653,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -22665,64 +22665,64 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class HazardousItemType - + Private idField As IDType - + Private placardNotationField As PlacardNotationType - + Private placardEndorsementField As PlacardEndorsementType - + Private additionalInformationField() As AdditionalInformationType - + Private uNDGCodeField As UNDGCodeType - + Private emergencyProceduresCodeField As EmergencyProceduresCodeType - + Private medicalFirstAidGuideCodeField As MedicalFirstAidGuideCodeType - + Private technicalNameField As TechnicalNameType - + Private categoryNameField As CategoryNameType - + Private hazardousCategoryCodeField As HazardousCategoryCodeType - + Private upperOrangeHazardPlacardIDField As UpperOrangeHazardPlacardIDType - + Private lowerOrangeHazardPlacardIDField As LowerOrangeHazardPlacardIDType - + Private markingIDField As MarkingIDType - + Private hazardClassIDField As HazardClassIDType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private quantityField As QuantityType2 - + Private contactPartyField As PartyType - + Private secondaryHazardField() As SecondaryHazardType - + Private hazardousGoodsTransitField() As HazardousGoodsTransitType - + Private emergencyTemperatureField As TemperatureType - + Private flashpointTemperatureField As TemperatureType - + Private additionalTemperatureField() As TemperatureType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -22731,9 +22731,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property PlacardNotation() As PlacardNotationType Get Return Me.placardNotationField @@ -22742,9 +22742,9 @@ Namespace Peppol.BISBilling30CreditNote Me.placardNotationField = value End Set End Property - + ''' - _ + Public Property PlacardEndorsement() As PlacardEndorsementType Get Return Me.placardEndorsementField @@ -22753,9 +22753,9 @@ Namespace Peppol.BISBilling30CreditNote Me.placardEndorsementField = value End Set End Property - + ''' - _ + Public Property AdditionalInformation() As AdditionalInformationType() Get Return Me.additionalInformationField @@ -22764,9 +22764,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalInformationField = value End Set End Property - + ''' - _ + Public Property UNDGCode() As UNDGCodeType Get Return Me.uNDGCodeField @@ -22775,9 +22775,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uNDGCodeField = value End Set End Property - + ''' - _ + Public Property EmergencyProceduresCode() As EmergencyProceduresCodeType Get Return Me.emergencyProceduresCodeField @@ -22786,9 +22786,9 @@ Namespace Peppol.BISBilling30CreditNote Me.emergencyProceduresCodeField = value End Set End Property - + ''' - _ + Public Property MedicalFirstAidGuideCode() As MedicalFirstAidGuideCodeType Get Return Me.medicalFirstAidGuideCodeField @@ -22797,9 +22797,9 @@ Namespace Peppol.BISBilling30CreditNote Me.medicalFirstAidGuideCodeField = value End Set End Property - + ''' - _ + Public Property TechnicalName() As TechnicalNameType Get Return Me.technicalNameField @@ -22808,9 +22808,9 @@ Namespace Peppol.BISBilling30CreditNote Me.technicalNameField = value End Set End Property - + ''' - _ + Public Property CategoryName() As CategoryNameType Get Return Me.categoryNameField @@ -22819,9 +22819,9 @@ Namespace Peppol.BISBilling30CreditNote Me.categoryNameField = value End Set End Property - + ''' - _ + Public Property HazardousCategoryCode() As HazardousCategoryCodeType Get Return Me.hazardousCategoryCodeField @@ -22830,9 +22830,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousCategoryCodeField = value End Set End Property - + ''' - _ + Public Property UpperOrangeHazardPlacardID() As UpperOrangeHazardPlacardIDType Get Return Me.upperOrangeHazardPlacardIDField @@ -22841,9 +22841,9 @@ Namespace Peppol.BISBilling30CreditNote Me.upperOrangeHazardPlacardIDField = value End Set End Property - + ''' - _ + Public Property LowerOrangeHazardPlacardID() As LowerOrangeHazardPlacardIDType Get Return Me.lowerOrangeHazardPlacardIDField @@ -22852,9 +22852,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lowerOrangeHazardPlacardIDField = value End Set End Property - + ''' - _ + Public Property MarkingID() As MarkingIDType Get Return Me.markingIDField @@ -22863,9 +22863,9 @@ Namespace Peppol.BISBilling30CreditNote Me.markingIDField = value End Set End Property - + ''' - _ + Public Property HazardClassID() As HazardClassIDType Get Return Me.hazardClassIDField @@ -22874,9 +22874,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardClassIDField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -22885,9 +22885,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -22896,9 +22896,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -22907,7 +22907,7 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' Public Property ContactParty() As PartyType Get @@ -22917,9 +22917,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contactPartyField = value End Set End Property - + ''' - _ + Public Property SecondaryHazard() As SecondaryHazardType() Get Return Me.secondaryHazardField @@ -22928,9 +22928,9 @@ Namespace Peppol.BISBilling30CreditNote Me.secondaryHazardField = value End Set End Property - + ''' - _ + Public Property HazardousGoodsTransit() As HazardousGoodsTransitType() Get Return Me.hazardousGoodsTransitField @@ -22939,7 +22939,7 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousGoodsTransitField = value End Set End Property - + ''' Public Property EmergencyTemperature() As TemperatureType Get @@ -22949,7 +22949,7 @@ Namespace Peppol.BISBilling30CreditNote Me.emergencyTemperatureField = value End Set End Property - + ''' Public Property FlashpointTemperature() As TemperatureType Get @@ -22959,9 +22959,9 @@ Namespace Peppol.BISBilling30CreditNote Me.flashpointTemperatureField = value End Set End Property - + ''' - _ + Public Property AdditionalTemperature() As TemperatureType() Get Return Me.additionalTemperatureField @@ -22971,28 +22971,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SecondaryHazardType - + Private idField As IDType - + Private placardNotationField As PlacardNotationType - + Private placardEndorsementField As PlacardEndorsementType - + Private emergencyProceduresCodeField As EmergencyProceduresCodeType - + Private extensionField() As ExtensionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23001,9 +23001,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property PlacardNotation() As PlacardNotationType Get Return Me.placardNotationField @@ -23012,9 +23012,9 @@ Namespace Peppol.BISBilling30CreditNote Me.placardNotationField = value End Set End Property - + ''' - _ + Public Property PlacardEndorsement() As PlacardEndorsementType Get Return Me.placardEndorsementField @@ -23023,9 +23023,9 @@ Namespace Peppol.BISBilling30CreditNote Me.placardEndorsementField = value End Set End Property - + ''' - _ + Public Property EmergencyProceduresCode() As EmergencyProceduresCodeType Get Return Me.emergencyProceduresCodeField @@ -23034,9 +23034,9 @@ Namespace Peppol.BISBilling30CreditNote Me.emergencyProceduresCodeField = value End Set End Property - + ''' - _ + Public Property Extension() As ExtensionType() Get Return Me.extensionField @@ -23046,44 +23046,44 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemPropertyType - + Private idField As IDType - + Private nameField As NameType1 - + Private nameCodeField As NameCodeType - + Private testMethodField As TestMethodType - + Private valueField As ValueType - + Private valueQuantityField As ValueQuantityType - + Private valueQualifierField() As ValueQualifierType - + Private importanceCodeField As ImportanceCodeType - + Private listValueField() As ListValueType - + Private usabilityPeriodField As PeriodType - + Private itemPropertyGroupField() As ItemPropertyGroupType - + Private rangeDimensionField As DimensionType - + Private itemPropertyRangeField As ItemPropertyRangeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23092,9 +23092,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -23103,9 +23103,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property NameCode() As NameCodeType Get Return Me.nameCodeField @@ -23114,9 +23114,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameCodeField = value End Set End Property - + ''' - _ + Public Property TestMethod() As TestMethodType Get Return Me.testMethodField @@ -23125,9 +23125,9 @@ Namespace Peppol.BISBilling30CreditNote Me.testMethodField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -23136,9 +23136,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueField = value End Set End Property - + ''' - _ + Public Property ValueQuantity() As ValueQuantityType Get Return Me.valueQuantityField @@ -23147,9 +23147,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueQuantityField = value End Set End Property - + ''' - _ + Public Property ValueQualifier() As ValueQualifierType() Get Return Me.valueQualifierField @@ -23158,9 +23158,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueQualifierField = value End Set End Property - + ''' - _ + Public Property ImportanceCode() As ImportanceCodeType Get Return Me.importanceCodeField @@ -23169,9 +23169,9 @@ Namespace Peppol.BISBilling30CreditNote Me.importanceCodeField = value End Set End Property - + ''' - _ + Public Property ListValue() As ListValueType() Get Return Me.listValueField @@ -23180,7 +23180,7 @@ Namespace Peppol.BISBilling30CreditNote Me.listValueField = value End Set End Property - + ''' Public Property UsabilityPeriod() As PeriodType Get @@ -23190,9 +23190,9 @@ Namespace Peppol.BISBilling30CreditNote Me.usabilityPeriodField = value End Set End Property - + ''' - _ + Public Property ItemPropertyGroup() As ItemPropertyGroupType() Get Return Me.itemPropertyGroupField @@ -23201,7 +23201,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemPropertyGroupField = value End Set End Property - + ''' Public Property RangeDimension() As DimensionType Get @@ -23211,7 +23211,7 @@ Namespace Peppol.BISBilling30CreditNote Me.rangeDimensionField = value End Set End Property - + ''' Public Property ItemPropertyRange() As ItemPropertyRangeType Get @@ -23222,24 +23222,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemPropertyGroupType - + Private idField As IDType - + Private nameField As NameType1 - + Private importanceCodeField As ImportanceCodeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23248,9 +23248,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -23259,9 +23259,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property ImportanceCode() As ImportanceCodeType Get Return Me.importanceCodeField @@ -23271,22 +23271,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemPropertyRangeType - + Private minimumValueField As MinimumValueType - + Private maximumValueField As MaximumValueType - + ''' - _ + Public Property MinimumValue() As MinimumValueType Get Return Me.minimumValueField @@ -23295,9 +23295,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumValueField = value End Set End Property - + ''' - _ + Public Property MaximumValue() As MaximumValueType Get Return Me.maximumValueField @@ -23307,34 +23307,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemInstanceType - + Private productTraceIDField As ProductTraceIDType - + Private manufactureDateField As ManufactureDateType - + Private manufactureTimeField As ManufactureTimeType - + Private bestBeforeDateField As BestBeforeDateType - + Private registrationIDField As RegistrationIDType - + Private serialIDField As SerialIDType - + Private additionalItemPropertyField() As ItemPropertyType - + Private lotIdentificationField As LotIdentificationType - + ''' - _ + Public Property ProductTraceID() As ProductTraceIDType Get Return Me.productTraceIDField @@ -23343,9 +23343,9 @@ Namespace Peppol.BISBilling30CreditNote Me.productTraceIDField = value End Set End Property - + ''' - _ + Public Property ManufactureDate() As ManufactureDateType Get Return Me.manufactureDateField @@ -23354,9 +23354,9 @@ Namespace Peppol.BISBilling30CreditNote Me.manufactureDateField = value End Set End Property - + ''' - _ + Public Property ManufactureTime() As ManufactureTimeType Get Return Me.manufactureTimeField @@ -23365,9 +23365,9 @@ Namespace Peppol.BISBilling30CreditNote Me.manufactureTimeField = value End Set End Property - + ''' - _ + Public Property BestBeforeDate() As BestBeforeDateType Get Return Me.bestBeforeDateField @@ -23376,9 +23376,9 @@ Namespace Peppol.BISBilling30CreditNote Me.bestBeforeDateField = value End Set End Property - + ''' - _ + Public Property RegistrationID() As RegistrationIDType Get Return Me.registrationIDField @@ -23387,9 +23387,9 @@ Namespace Peppol.BISBilling30CreditNote Me.registrationIDField = value End Set End Property - + ''' - _ + Public Property SerialID() As SerialIDType Get Return Me.serialIDField @@ -23398,9 +23398,9 @@ Namespace Peppol.BISBilling30CreditNote Me.serialIDField = value End Set End Property - + ''' - _ + Public Property AdditionalItemProperty() As ItemPropertyType() Get Return Me.additionalItemPropertyField @@ -23409,7 +23409,7 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalItemPropertyField = value End Set End Property - + ''' Public Property LotIdentification() As LotIdentificationType Get @@ -23420,24 +23420,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LotIdentificationType - + Private lotNumberIDField As LotNumberIDType - + Private expiryDateField As ExpiryDateType - + Private additionalItemPropertyField() As ItemPropertyType - + ''' - _ + Public Property LotNumberID() As LotNumberIDType Get Return Me.lotNumberIDField @@ -23446,9 +23446,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lotNumberIDField = value End Set End Property - + ''' - _ + Public Property ExpiryDate() As ExpiryDateType Get Return Me.expiryDateField @@ -23457,9 +23457,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expiryDateField = value End Set End Property - + ''' - _ + Public Property AdditionalItemProperty() As ItemPropertyType() Get Return Me.additionalItemPropertyField @@ -23469,32 +23469,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CertificateType - + Private idField As IDType - + Private certificateTypeCodeField As CertificateTypeCodeType - + Private certificateType1Field As CertificateTypeType - + Private remarksField() As RemarksType - + Private issuerPartyField As PartyType - + Private documentReferenceField() As DocumentReferenceType - + Private signatureField() As SignatureType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23503,9 +23503,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property CertificateTypeCode() As CertificateTypeCodeType Get Return Me.certificateTypeCodeField @@ -23514,9 +23514,9 @@ Namespace Peppol.BISBilling30CreditNote Me.certificateTypeCodeField = value End Set End Property - + ''' - _ + Public Property CertificateType1() As CertificateTypeType Get Return Me.certificateType1Field @@ -23525,9 +23525,9 @@ Namespace Peppol.BISBilling30CreditNote Me.certificateType1Field = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -23536,7 +23536,7 @@ Namespace Peppol.BISBilling30CreditNote Me.remarksField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -23546,9 +23546,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issuerPartyField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -23557,9 +23557,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -23569,38 +23569,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SignatureType - + Private idField As IDType - + Private noteField() As NoteType - + Private validationDateField As ValidationDateType - + Private validationTimeField As ValidationTimeType - + Private validatorIDField As ValidatorIDType - + Private canonicalizationMethodField As CanonicalizationMethodType - + Private signatureMethodField As SignatureMethodType - + Private signatoryPartyField As PartyType - + Private digitalSignatureAttachmentField As AttachmentType - + Private originalDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23609,9 +23609,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -23620,9 +23620,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property ValidationDate() As ValidationDateType Get Return Me.validationDateField @@ -23631,9 +23631,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validationDateField = value End Set End Property - + ''' - _ + Public Property ValidationTime() As ValidationTimeType Get Return Me.validationTimeField @@ -23642,9 +23642,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validationTimeField = value End Set End Property - + ''' - _ + Public Property ValidatorID() As ValidatorIDType Get Return Me.validatorIDField @@ -23653,9 +23653,9 @@ Namespace Peppol.BISBilling30CreditNote Me.validatorIDField = value End Set End Property - + ''' - _ + Public Property CanonicalizationMethod() As CanonicalizationMethodType Get Return Me.canonicalizationMethodField @@ -23664,9 +23664,9 @@ Namespace Peppol.BISBilling30CreditNote Me.canonicalizationMethodField = value End Set End Property - + ''' - _ + Public Property SignatureMethod() As SignatureMethodType Get Return Me.signatureMethodField @@ -23675,7 +23675,7 @@ Namespace Peppol.BISBilling30CreditNote Me.signatureMethodField = value End Set End Property - + ''' Public Property SignatoryParty() As PartyType Get @@ -23685,7 +23685,7 @@ Namespace Peppol.BISBilling30CreditNote Me.signatoryPartyField = value End Set End Property - + ''' Public Property DigitalSignatureAttachment() As AttachmentType Get @@ -23695,7 +23695,7 @@ Namespace Peppol.BISBilling30CreditNote Me.digitalSignatureAttachmentField = value End Set End Property - + ''' Public Property OriginalDocumentReference() As DocumentReferenceType Get @@ -23706,48 +23706,48 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PackageType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private returnableMaterialIndicatorField As ReturnableMaterialIndicatorType - + Private packageLevelCodeField As PackageLevelCodeType - + Private packagingTypeCodeField As PackagingTypeCodeType - + Private packingMaterialField() As PackingMaterialType - + Private traceIDField As TraceIDType - + Private containedPackageField() As PackageType - + Private containingTransportEquipmentField As TransportEquipmentType - + Private goodsItemField() As GoodsItemType - + Private measurementDimensionField() As DimensionType - + Private deliveryUnitField() As DeliveryUnitType - + Private deliveryField As DeliveryType - + Private pickupField As PickupType - + Private despatchField As DespatchType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23756,9 +23756,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -23767,9 +23767,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property ReturnableMaterialIndicator() As ReturnableMaterialIndicatorType Get Return Me.returnableMaterialIndicatorField @@ -23778,9 +23778,9 @@ Namespace Peppol.BISBilling30CreditNote Me.returnableMaterialIndicatorField = value End Set End Property - + ''' - _ + Public Property PackageLevelCode() As PackageLevelCodeType Get Return Me.packageLevelCodeField @@ -23789,9 +23789,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packageLevelCodeField = value End Set End Property - + ''' - _ + Public Property PackagingTypeCode() As PackagingTypeCodeType Get Return Me.packagingTypeCodeField @@ -23800,9 +23800,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packagingTypeCodeField = value End Set End Property - + ''' - _ + Public Property PackingMaterial() As PackingMaterialType() Get Return Me.packingMaterialField @@ -23811,9 +23811,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packingMaterialField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -23822,9 +23822,9 @@ Namespace Peppol.BISBilling30CreditNote Me.traceIDField = value End Set End Property - + ''' - _ + Public Property ContainedPackage() As PackageType() Get Return Me.containedPackageField @@ -23833,7 +23833,7 @@ Namespace Peppol.BISBilling30CreditNote Me.containedPackageField = value End Set End Property - + ''' Public Property ContainingTransportEquipment() As TransportEquipmentType Get @@ -23843,9 +23843,9 @@ Namespace Peppol.BISBilling30CreditNote Me.containingTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -23854,9 +23854,9 @@ Namespace Peppol.BISBilling30CreditNote Me.goodsItemField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -23865,9 +23865,9 @@ Namespace Peppol.BISBilling30CreditNote Me.measurementDimensionField = value End Set End Property - + ''' - _ + Public Property DeliveryUnit() As DeliveryUnitType() Get Return Me.deliveryUnitField @@ -23876,7 +23876,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryUnitField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -23886,7 +23886,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' Public Property Pickup() As PickupType Get @@ -23896,7 +23896,7 @@ Namespace Peppol.BISBilling30CreditNote Me.pickupField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -23907,98 +23907,98 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class GoodsItemType - + Private idField As IDType - + Private sequenceNumberIDField As SequenceNumberIDType - + Private descriptionField() As DescriptionType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private declaredCustomsValueAmountField As DeclaredCustomsValueAmountType - + Private declaredForCarriageValueAmountField As DeclaredForCarriageValueAmountType - + Private declaredStatisticsValueAmountField As DeclaredStatisticsValueAmountType - + Private freeOnBoardValueAmountField As FreeOnBoardValueAmountType - + Private insuranceValueAmountField As InsuranceValueAmountType - + Private valueAmountField As ValueAmountType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netNetWeightMeasureField As NetNetWeightMeasureType - + Private chargeableWeightMeasureField As ChargeableWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private quantityField As QuantityType2 - + Private preferenceCriterionCodeField As PreferenceCriterionCodeType - + Private requiredCustomsIDField As RequiredCustomsIDType - + Private customsStatusCodeField As CustomsStatusCodeType - + Private customsTariffQuantityField As CustomsTariffQuantityType - + Private customsImportClassifiedIndicatorField As CustomsImportClassifiedIndicatorType - + Private chargeableQuantityField As ChargeableQuantityType - + Private returnableQuantityField As ReturnableQuantityType - + Private traceIDField As TraceIDType - + Private itemField() As ItemType - + Private goodsItemContainerField() As GoodsItemContainerType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private invoiceLineField() As InvoiceLineType - + Private temperatureField() As TemperatureType - + Private containedGoodsItemField() As GoodsItemType - + Private originAddressField As AddressType - + Private deliveryField As DeliveryType - + Private pickupField As PickupType - + Private despatchField As DespatchType - + Private measurementDimensionField() As DimensionType - + Private containingPackageField() As PackageType - + Private shipmentDocumentReferenceField As DocumentReferenceType - + Private minimumTemperatureField As TemperatureType - + Private maximumTemperatureField As TemperatureType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -24007,9 +24007,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SequenceNumberID() As SequenceNumberIDType Get Return Me.sequenceNumberIDField @@ -24018,9 +24018,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceNumberIDField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -24029,9 +24029,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -24040,9 +24040,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property DeclaredCustomsValueAmount() As DeclaredCustomsValueAmountType Get Return Me.declaredCustomsValueAmountField @@ -24051,9 +24051,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredCustomsValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredForCarriageValueAmount() As DeclaredForCarriageValueAmountType Get Return Me.declaredForCarriageValueAmountField @@ -24062,9 +24062,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredForCarriageValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredStatisticsValueAmount() As DeclaredStatisticsValueAmountType Get Return Me.declaredStatisticsValueAmountField @@ -24073,9 +24073,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declaredStatisticsValueAmountField = value End Set End Property - + ''' - _ + Public Property FreeOnBoardValueAmount() As FreeOnBoardValueAmountType Get Return Me.freeOnBoardValueAmountField @@ -24084,9 +24084,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freeOnBoardValueAmountField = value End Set End Property - + ''' - _ + Public Property InsuranceValueAmount() As InsuranceValueAmountType Get Return Me.insuranceValueAmountField @@ -24095,9 +24095,9 @@ Namespace Peppol.BISBilling30CreditNote Me.insuranceValueAmountField = value End Set End Property - + ''' - _ + Public Property ValueAmount() As ValueAmountType Get Return Me.valueAmountField @@ -24106,9 +24106,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueAmountField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -24117,9 +24117,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -24128,9 +24128,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetNetWeightMeasure() As NetNetWeightMeasureType Get Return Me.netNetWeightMeasureField @@ -24139,9 +24139,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netNetWeightMeasureField = value End Set End Property - + ''' - _ + Public Property ChargeableWeightMeasure() As ChargeableWeightMeasureType Get Return Me.chargeableWeightMeasureField @@ -24150,9 +24150,9 @@ Namespace Peppol.BISBilling30CreditNote Me.chargeableWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -24161,9 +24161,9 @@ Namespace Peppol.BISBilling30CreditNote Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -24172,9 +24172,9 @@ Namespace Peppol.BISBilling30CreditNote Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -24183,9 +24183,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property PreferenceCriterionCode() As PreferenceCriterionCodeType Get Return Me.preferenceCriterionCodeField @@ -24194,9 +24194,9 @@ Namespace Peppol.BISBilling30CreditNote Me.preferenceCriterionCodeField = value End Set End Property - + ''' - _ + Public Property RequiredCustomsID() As RequiredCustomsIDType Get Return Me.requiredCustomsIDField @@ -24205,9 +24205,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredCustomsIDField = value End Set End Property - + ''' - _ + Public Property CustomsStatusCode() As CustomsStatusCodeType Get Return Me.customsStatusCodeField @@ -24216,9 +24216,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customsStatusCodeField = value End Set End Property - + ''' - _ + Public Property CustomsTariffQuantity() As CustomsTariffQuantityType Get Return Me.customsTariffQuantityField @@ -24227,9 +24227,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customsTariffQuantityField = value End Set End Property - + ''' - _ + Public Property CustomsImportClassifiedIndicator() As CustomsImportClassifiedIndicatorType Get Return Me.customsImportClassifiedIndicatorField @@ -24238,9 +24238,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customsImportClassifiedIndicatorField = value End Set End Property - + ''' - _ + Public Property ChargeableQuantity() As ChargeableQuantityType Get Return Me.chargeableQuantityField @@ -24249,9 +24249,9 @@ Namespace Peppol.BISBilling30CreditNote Me.chargeableQuantityField = value End Set End Property - + ''' - _ + Public Property ReturnableQuantity() As ReturnableQuantityType Get Return Me.returnableQuantityField @@ -24260,9 +24260,9 @@ Namespace Peppol.BISBilling30CreditNote Me.returnableQuantityField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -24271,9 +24271,9 @@ Namespace Peppol.BISBilling30CreditNote Me.traceIDField = value End Set End Property - + ''' - _ + Public Property Item() As ItemType() Get Return Me.itemField @@ -24282,9 +24282,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property GoodsItemContainer() As GoodsItemContainerType() Get Return Me.goodsItemContainerField @@ -24293,9 +24293,9 @@ Namespace Peppol.BISBilling30CreditNote Me.goodsItemContainerField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -24304,9 +24304,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freightAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property InvoiceLine() As InvoiceLineType() Get Return Me.invoiceLineField @@ -24315,9 +24315,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoiceLineField = value End Set End Property - + ''' - _ + Public Property Temperature() As TemperatureType() Get Return Me.temperatureField @@ -24326,9 +24326,9 @@ Namespace Peppol.BISBilling30CreditNote Me.temperatureField = value End Set End Property - + ''' - _ + Public Property ContainedGoodsItem() As GoodsItemType() Get Return Me.containedGoodsItemField @@ -24337,7 +24337,7 @@ Namespace Peppol.BISBilling30CreditNote Me.containedGoodsItemField = value End Set End Property - + ''' Public Property OriginAddress() As AddressType Get @@ -24347,7 +24347,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originAddressField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -24357,7 +24357,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' Public Property Pickup() As PickupType Get @@ -24367,7 +24367,7 @@ Namespace Peppol.BISBilling30CreditNote Me.pickupField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -24377,9 +24377,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -24388,9 +24388,9 @@ Namespace Peppol.BISBilling30CreditNote Me.measurementDimensionField = value End Set End Property - + ''' - _ + Public Property ContainingPackage() As PackageType() Get Return Me.containingPackageField @@ -24399,7 +24399,7 @@ Namespace Peppol.BISBilling30CreditNote Me.containingPackageField = value End Set End Property - + ''' Public Property ShipmentDocumentReference() As DocumentReferenceType Get @@ -24409,7 +24409,7 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentDocumentReferenceField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -24419,7 +24419,7 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumTemperatureField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -24430,24 +24430,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class GoodsItemContainerType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private transportEquipmentField() As TransportEquipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -24456,9 +24456,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -24467,9 +24467,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property TransportEquipment() As TransportEquipmentType() Get Return Me.transportEquipmentField @@ -24479,74 +24479,74 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class InvoiceLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private invoicedQuantityField As InvoicedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxPointDateField As TaxPointDateType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private freeOfChargeIndicatorField As FreeOfChargeIndicatorType - + Private invoicePeriodField() As PeriodType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private despatchLineReferenceField() As LineReferenceType - + Private receiptLineReferenceField() As LineReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private pricingReferenceField As PricingReferenceType - + Private originatorPartyField As PartyType - + Private deliveryField() As DeliveryType - + Private paymentTermsField() As PaymentTermsType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private withholdingTaxTotalField() As TaxTotalType - + Private itemField As ItemType - + Private priceField As PriceType - + Private deliveryTermsField As DeliveryTermsType - + Private subInvoiceLineField() As InvoiceLineType - + Private itemPriceExtensionField As PriceExtensionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -24555,9 +24555,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -24566,9 +24566,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -24577,9 +24577,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property InvoicedQuantity() As InvoicedQuantityType Get Return Me.invoicedQuantityField @@ -24588,9 +24588,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -24599,9 +24599,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -24610,9 +24610,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -24621,9 +24621,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -24632,9 +24632,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -24643,9 +24643,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property FreeOfChargeIndicator() As FreeOfChargeIndicatorType Get Return Me.freeOfChargeIndicatorField @@ -24654,9 +24654,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freeOfChargeIndicatorField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -24665,9 +24665,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -24676,9 +24676,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -24687,9 +24687,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptLineReference() As LineReferenceType() Get Return Me.receiptLineReferenceField @@ -24698,9 +24698,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receiptLineReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -24709,9 +24709,9 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -24720,7 +24720,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -24730,7 +24730,7 @@ Namespace Peppol.BISBilling30CreditNote Me.pricingReferenceField = value End Set End Property - + ''' Public Property OriginatorParty() As PartyType Get @@ -24740,9 +24740,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originatorPartyField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -24751,9 +24751,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -24762,9 +24762,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -24773,9 +24773,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -24784,9 +24784,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property WithholdingTaxTotal() As TaxTotalType() Get Return Me.withholdingTaxTotalField @@ -24795,7 +24795,7 @@ Namespace Peppol.BISBilling30CreditNote Me.withholdingTaxTotalField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -24805,7 +24805,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -24815,7 +24815,7 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' Public Property DeliveryTerms() As DeliveryTermsType Get @@ -24825,9 +24825,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' - _ + Public Property SubInvoiceLine() As InvoiceLineType() Get Return Me.subInvoiceLineField @@ -24836,7 +24836,7 @@ Namespace Peppol.BISBilling30CreditNote Me.subInvoiceLineField = value End Set End Property - + ''' Public Property ItemPriceExtension() As PriceExtensionType Get @@ -24847,26 +24847,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LineReferenceType - + Private lineIDField As LineIDType - + Private uUIDField As UUIDType - + Private lineStatusCodeField As LineStatusCodeType - + Private documentReferenceField As DocumentReferenceType - + ''' - _ + Public Property LineID() As LineIDType Get Return Me.lineIDField @@ -24875,9 +24875,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineIDField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -24886,9 +24886,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -24897,7 +24897,7 @@ Namespace Peppol.BISBilling30CreditNote Me.lineStatusCodeField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -24908,32 +24908,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class BillingReferenceType - + Private invoiceDocumentReferenceField As DocumentReferenceType - + Private selfBilledInvoiceDocumentReferenceField As DocumentReferenceType - + Private creditNoteDocumentReferenceField As DocumentReferenceType - + Private selfBilledCreditNoteDocumentReferenceField As DocumentReferenceType - + Private debitNoteDocumentReferenceField As DocumentReferenceType - + Private reminderDocumentReferenceField As DocumentReferenceType - + Private additionalDocumentReferenceField As DocumentReferenceType - + Private billingReferenceLineField() As BillingReferenceLineType - + ''' Public Property InvoiceDocumentReference() As DocumentReferenceType Get @@ -24943,7 +24943,7 @@ Namespace Peppol.BISBilling30CreditNote Me.invoiceDocumentReferenceField = value End Set End Property - + ''' Public Property SelfBilledInvoiceDocumentReference() As DocumentReferenceType Get @@ -24953,7 +24953,7 @@ Namespace Peppol.BISBilling30CreditNote Me.selfBilledInvoiceDocumentReferenceField = value End Set End Property - + ''' Public Property CreditNoteDocumentReference() As DocumentReferenceType Get @@ -24963,7 +24963,7 @@ Namespace Peppol.BISBilling30CreditNote Me.creditNoteDocumentReferenceField = value End Set End Property - + ''' Public Property SelfBilledCreditNoteDocumentReference() As DocumentReferenceType Get @@ -24973,7 +24973,7 @@ Namespace Peppol.BISBilling30CreditNote Me.selfBilledCreditNoteDocumentReferenceField = value End Set End Property - + ''' Public Property DebitNoteDocumentReference() As DocumentReferenceType Get @@ -24983,7 +24983,7 @@ Namespace Peppol.BISBilling30CreditNote Me.debitNoteDocumentReferenceField = value End Set End Property - + ''' Public Property ReminderDocumentReference() As DocumentReferenceType Get @@ -24993,7 +24993,7 @@ Namespace Peppol.BISBilling30CreditNote Me.reminderDocumentReferenceField = value End Set End Property - + ''' Public Property AdditionalDocumentReference() As DocumentReferenceType Get @@ -25003,9 +25003,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReferenceLine() As BillingReferenceLineType() Get Return Me.billingReferenceLineField @@ -25015,24 +25015,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class BillingReferenceLineType - + Private idField As IDType - + Private amountField As AmountType2 - + Private allowanceChargeField() As AllowanceChargeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25041,9 +25041,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -25052,9 +25052,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -25064,20 +25064,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PricingReferenceType - + Private originalItemLocationQuantityField As ItemLocationQuantityType - + Private alternativeConditionPriceField() As PriceType - + ''' Public Property OriginalItemLocationQuantity() As ItemLocationQuantityType Get @@ -25087,9 +25087,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originalItemLocationQuantityField = value End Set End Property - + ''' - _ + Public Property AlternativeConditionPrice() As PriceType() Get Return Me.alternativeConditionPriceField @@ -25099,42 +25099,42 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemLocationQuantityType - + Private leadTimeMeasureField As LeadTimeMeasureType - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private tradingRestrictionsField() As TradingRestrictionsType - + Private applicableTerritoryAddressField() As AddressType - + Private priceField As PriceType - + Private deliveryUnitField() As DeliveryUnitType - + Private applicableTaxCategoryField() As TaxCategoryType - + Private packageField As PackageType - + Private allowanceChargeField() As AllowanceChargeType - + Private dependentPriceReferenceField As DependentPriceReferenceType - + ''' - _ + Public Property LeadTimeMeasure() As LeadTimeMeasureType Get Return Me.leadTimeMeasureField @@ -25143,9 +25143,9 @@ Namespace Peppol.BISBilling30CreditNote Me.leadTimeMeasureField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -25154,9 +25154,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -25165,9 +25165,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -25176,9 +25176,9 @@ Namespace Peppol.BISBilling30CreditNote Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property TradingRestrictions() As TradingRestrictionsType() Get Return Me.tradingRestrictionsField @@ -25187,9 +25187,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tradingRestrictionsField = value End Set End Property - + ''' - _ + Public Property ApplicableTerritoryAddress() As AddressType() Get Return Me.applicableTerritoryAddressField @@ -25198,7 +25198,7 @@ Namespace Peppol.BISBilling30CreditNote Me.applicableTerritoryAddressField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -25208,9 +25208,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' - _ + Public Property DeliveryUnit() As DeliveryUnitType() Get Return Me.deliveryUnitField @@ -25219,9 +25219,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryUnitField = value End Set End Property - + ''' - _ + Public Property ApplicableTaxCategory() As TaxCategoryType() Get Return Me.applicableTaxCategoryField @@ -25230,7 +25230,7 @@ Namespace Peppol.BISBilling30CreditNote Me.applicableTaxCategoryField = value End Set End Property - + ''' Public Property Package() As PackageType Get @@ -25240,9 +25240,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packageField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -25251,7 +25251,7 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' Public Property DependentPriceReference() As DependentPriceReferenceType Get @@ -25262,38 +25262,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PriceType - + Private priceAmountField As PriceAmountType - + Private baseQuantityField As BaseQuantityType - + Private priceChangeReasonField() As PriceChangeReasonType - + Private priceTypeCodeField As PriceTypeCodeType - + Private priceType1Field As PriceTypeType - + Private orderableUnitFactorRateField As OrderableUnitFactorRateType - + Private validityPeriodField() As PeriodType - + Private priceListField As PriceListType - + Private allowanceChargeField() As AllowanceChargeType - + Private pricingExchangeRateField As ExchangeRateType - + ''' - _ + Public Property PriceAmount() As PriceAmountType Get Return Me.priceAmountField @@ -25302,9 +25302,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceAmountField = value End Set End Property - + ''' - _ + Public Property BaseQuantity() As BaseQuantityType Get Return Me.baseQuantityField @@ -25313,9 +25313,9 @@ Namespace Peppol.BISBilling30CreditNote Me.baseQuantityField = value End Set End Property - + ''' - _ + Public Property PriceChangeReason() As PriceChangeReasonType() Get Return Me.priceChangeReasonField @@ -25324,9 +25324,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceChangeReasonField = value End Set End Property - + ''' - _ + Public Property PriceTypeCode() As PriceTypeCodeType Get Return Me.priceTypeCodeField @@ -25335,9 +25335,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceTypeCodeField = value End Set End Property - + ''' - _ + Public Property PriceType1() As PriceTypeType Get Return Me.priceType1Field @@ -25346,9 +25346,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceType1Field = value End Set End Property - + ''' - _ + Public Property OrderableUnitFactorRate() As OrderableUnitFactorRateType Get Return Me.orderableUnitFactorRateField @@ -25357,9 +25357,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderableUnitFactorRateField = value End Set End Property - + ''' - _ + Public Property ValidityPeriod() As PeriodType() Get Return Me.validityPeriodField @@ -25368,7 +25368,7 @@ Namespace Peppol.BISBilling30CreditNote Me.validityPeriodField = value End Set End Property - + ''' Public Property PriceList() As PriceListType Get @@ -25378,9 +25378,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceListField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -25389,7 +25389,7 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' Public Property PricingExchangeRate() As ExchangeRateType Get @@ -25400,26 +25400,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PriceListType - + Private idField As IDType - + Private statusCodeField As StatusCodeType - + Private validityPeriodField() As PeriodType - + Private previousPriceListField As PriceListType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25428,9 +25428,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property StatusCode() As StatusCodeType Get Return Me.statusCodeField @@ -25439,9 +25439,9 @@ Namespace Peppol.BISBilling30CreditNote Me.statusCodeField = value End Set End Property - + ''' - _ + Public Property ValidityPeriod() As PeriodType() Get Return Me.validityPeriodField @@ -25450,7 +25450,7 @@ Namespace Peppol.BISBilling30CreditNote Me.validityPeriodField = value End Set End Property - + ''' Public Property PreviousPriceList() As PriceListType Get @@ -25461,36 +25461,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ExchangeRateType - + Private sourceCurrencyCodeField As SourceCurrencyCodeType - + Private sourceCurrencyBaseRateField As SourceCurrencyBaseRateType - + Private targetCurrencyCodeField As TargetCurrencyCodeType - + Private targetCurrencyBaseRateField As TargetCurrencyBaseRateType - + Private exchangeMarketIDField As ExchangeMarketIDType - + Private calculationRateField As CalculationRateType - + Private mathematicOperatorCodeField As MathematicOperatorCodeType - + Private dateField As DateType1 - + Private foreignExchangeContractField As ContractType - + ''' - _ + Public Property SourceCurrencyCode() As SourceCurrencyCodeType Get Return Me.sourceCurrencyCodeField @@ -25499,9 +25499,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sourceCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property SourceCurrencyBaseRate() As SourceCurrencyBaseRateType Get Return Me.sourceCurrencyBaseRateField @@ -25510,9 +25510,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sourceCurrencyBaseRateField = value End Set End Property - + ''' - _ + Public Property TargetCurrencyCode() As TargetCurrencyCodeType Get Return Me.targetCurrencyCodeField @@ -25521,9 +25521,9 @@ Namespace Peppol.BISBilling30CreditNote Me.targetCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property TargetCurrencyBaseRate() As TargetCurrencyBaseRateType Get Return Me.targetCurrencyBaseRateField @@ -25532,9 +25532,9 @@ Namespace Peppol.BISBilling30CreditNote Me.targetCurrencyBaseRateField = value End Set End Property - + ''' - _ + Public Property ExchangeMarketID() As ExchangeMarketIDType Get Return Me.exchangeMarketIDField @@ -25543,9 +25543,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exchangeMarketIDField = value End Set End Property - + ''' - _ + Public Property CalculationRate() As CalculationRateType Get Return Me.calculationRateField @@ -25554,9 +25554,9 @@ Namespace Peppol.BISBilling30CreditNote Me.calculationRateField = value End Set End Property - + ''' - _ + Public Property MathematicOperatorCode() As MathematicOperatorCodeType Get Return Me.mathematicOperatorCodeField @@ -25565,9 +25565,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mathematicOperatorCodeField = value End Set End Property - + ''' - _ + Public Property [Date]() As DateType1 Get Return Me.dateField @@ -25576,7 +25576,7 @@ Namespace Peppol.BISBilling30CreditNote Me.dateField = value End Set End Property - + ''' Public Property ForeignExchangeContract() As ContractType Get @@ -25587,24 +25587,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DependentPriceReferenceType - + Private percentField As PercentType1 - + Private locationAddressField As AddressType - + Private dependentLineReferenceField As LineReferenceType - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -25613,7 +25613,7 @@ Namespace Peppol.BISBilling30CreditNote Me.percentField = value End Set End Property - + ''' Public Property LocationAddress() As AddressType Get @@ -25623,7 +25623,7 @@ Namespace Peppol.BISBilling30CreditNote Me.locationAddressField = value End Set End Property - + ''' Public Property DependentLineReference() As LineReferenceType Get @@ -25634,56 +25634,56 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PaymentTermsType - + Private idField As IDType - + Private paymentMeansIDField() As PaymentMeansIDType - + Private prepaidPaymentReferenceIDField As PrepaidPaymentReferenceIDType - + Private noteField() As NoteType - + Private referenceEventCodeField As ReferenceEventCodeType - + Private settlementDiscountPercentField As SettlementDiscountPercentType - + Private penaltySurchargePercentField As PenaltySurchargePercentType - + Private paymentPercentField As PaymentPercentType - + Private amountField As AmountType2 - + Private settlementDiscountAmountField As SettlementDiscountAmountType - + Private penaltyAmountField As PenaltyAmountType - + Private paymentTermsDetailsURIField As PaymentTermsDetailsURIType - + Private paymentDueDateField As PaymentDueDateType - + Private installmentDueDateField As InstallmentDueDateType - + Private invoicingPartyReferenceField As InvoicingPartyReferenceType - + Private settlementPeriodField As PeriodType - + Private penaltyPeriodField As PeriodType - + Private exchangeRateField As ExchangeRateType - + Private validityPeriodField As PeriodType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25692,9 +25692,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property PaymentMeansID() As PaymentMeansIDType() Get Return Me.paymentMeansIDField @@ -25703,9 +25703,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentMeansIDField = value End Set End Property - + ''' - _ + Public Property PrepaidPaymentReferenceID() As PrepaidPaymentReferenceIDType Get Return Me.prepaidPaymentReferenceIDField @@ -25714,9 +25714,9 @@ Namespace Peppol.BISBilling30CreditNote Me.prepaidPaymentReferenceIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -25725,9 +25725,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property ReferenceEventCode() As ReferenceEventCodeType Get Return Me.referenceEventCodeField @@ -25736,9 +25736,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceEventCodeField = value End Set End Property - + ''' - _ + Public Property SettlementDiscountPercent() As SettlementDiscountPercentType Get Return Me.settlementDiscountPercentField @@ -25747,9 +25747,9 @@ Namespace Peppol.BISBilling30CreditNote Me.settlementDiscountPercentField = value End Set End Property - + ''' - _ + Public Property PenaltySurchargePercent() As PenaltySurchargePercentType Get Return Me.penaltySurchargePercentField @@ -25758,9 +25758,9 @@ Namespace Peppol.BISBilling30CreditNote Me.penaltySurchargePercentField = value End Set End Property - + ''' - _ + Public Property PaymentPercent() As PaymentPercentType Get Return Me.paymentPercentField @@ -25769,9 +25769,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPercentField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -25780,9 +25780,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property SettlementDiscountAmount() As SettlementDiscountAmountType Get Return Me.settlementDiscountAmountField @@ -25791,9 +25791,9 @@ Namespace Peppol.BISBilling30CreditNote Me.settlementDiscountAmountField = value End Set End Property - + ''' - _ + Public Property PenaltyAmount() As PenaltyAmountType Get Return Me.penaltyAmountField @@ -25802,9 +25802,9 @@ Namespace Peppol.BISBilling30CreditNote Me.penaltyAmountField = value End Set End Property - + ''' - _ + Public Property PaymentTermsDetailsURI() As PaymentTermsDetailsURIType Get Return Me.paymentTermsDetailsURIField @@ -25813,9 +25813,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsDetailsURIField = value End Set End Property - + ''' - _ + Public Property PaymentDueDate() As PaymentDueDateType Get Return Me.paymentDueDateField @@ -25824,9 +25824,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentDueDateField = value End Set End Property - + ''' - _ + Public Property InstallmentDueDate() As InstallmentDueDateType Get Return Me.installmentDueDateField @@ -25835,9 +25835,9 @@ Namespace Peppol.BISBilling30CreditNote Me.installmentDueDateField = value End Set End Property - + ''' - _ + Public Property InvoicingPartyReference() As InvoicingPartyReferenceType Get Return Me.invoicingPartyReferenceField @@ -25846,7 +25846,7 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicingPartyReferenceField = value End Set End Property - + ''' Public Property SettlementPeriod() As PeriodType Get @@ -25856,7 +25856,7 @@ Namespace Peppol.BISBilling30CreditNote Me.settlementPeriodField = value End Set End Property - + ''' Public Property PenaltyPeriod() As PeriodType Get @@ -25866,7 +25866,7 @@ Namespace Peppol.BISBilling30CreditNote Me.penaltyPeriodField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -25876,7 +25876,7 @@ Namespace Peppol.BISBilling30CreditNote Me.exchangeRateField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -25887,22 +25887,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PriceExtensionType - + Private amountField As AmountType2 - + Private taxTotalField() As TaxTotalType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -25911,9 +25911,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -25923,36 +25923,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PickupType - + Private idField As IDType - + Private actualPickupDateField As ActualPickupDateType - + Private actualPickupTimeField As ActualPickupTimeType - + Private earliestPickupDateField As EarliestPickupDateType - + Private earliestPickupTimeField As EarliestPickupTimeType - + Private latestPickupDateField As LatestPickupDateType - + Private latestPickupTimeField As LatestPickupTimeType - + Private pickupLocationField As LocationType1 - + Private pickupPartyField As PartyType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25961,9 +25961,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ActualPickupDate() As ActualPickupDateType Get Return Me.actualPickupDateField @@ -25972,9 +25972,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualPickupDateField = value End Set End Property - + ''' - _ + Public Property ActualPickupTime() As ActualPickupTimeType Get Return Me.actualPickupTimeField @@ -25983,9 +25983,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualPickupTimeField = value End Set End Property - + ''' - _ + Public Property EarliestPickupDate() As EarliestPickupDateType Get Return Me.earliestPickupDateField @@ -25994,9 +25994,9 @@ Namespace Peppol.BISBilling30CreditNote Me.earliestPickupDateField = value End Set End Property - + ''' - _ + Public Property EarliestPickupTime() As EarliestPickupTimeType Get Return Me.earliestPickupTimeField @@ -26005,9 +26005,9 @@ Namespace Peppol.BISBilling30CreditNote Me.earliestPickupTimeField = value End Set End Property - + ''' - _ + Public Property LatestPickupDate() As LatestPickupDateType Get Return Me.latestPickupDateField @@ -26016,9 +26016,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestPickupDateField = value End Set End Property - + ''' - _ + Public Property LatestPickupTime() As LatestPickupTimeType Get Return Me.latestPickupTimeField @@ -26027,7 +26027,7 @@ Namespace Peppol.BISBilling30CreditNote Me.latestPickupTimeField = value End Set End Property - + ''' Public Property PickupLocation() As LocationType1 Get @@ -26037,7 +26037,7 @@ Namespace Peppol.BISBilling30CreditNote Me.pickupLocationField = value End Set End Property - + ''' Public Property PickupParty() As PartyType Get @@ -26048,58 +26048,58 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ReceiptLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private receivedQuantityField As ReceivedQuantityType - + Private shortQuantityField As ShortQuantityType - + Private shortageActionCodeField As ShortageActionCodeType - + Private rejectedQuantityField As RejectedQuantityType - + Private rejectReasonCodeField As RejectReasonCodeType - + Private rejectReasonField() As RejectReasonType - + Private rejectActionCodeField As RejectActionCodeType - + Private quantityDiscrepancyCodeField As QuantityDiscrepancyCodeType - + Private oversupplyQuantityField As OversupplyQuantityType - + Private receivedDateField As ReceivedDateType - + Private timingComplaintCodeField As TimingComplaintCodeType - + Private timingComplaintField As TimingComplaintType - + Private orderLineReferenceField As OrderLineReferenceType - + Private despatchLineReferenceField() As LineReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField() As ItemType - + Private shipmentField() As ShipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -26108,9 +26108,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -26119,9 +26119,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -26130,9 +26130,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property ReceivedQuantity() As ReceivedQuantityType Get Return Me.receivedQuantityField @@ -26141,9 +26141,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedQuantityField = value End Set End Property - + ''' - _ + Public Property ShortQuantity() As ShortQuantityType Get Return Me.shortQuantityField @@ -26152,9 +26152,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shortQuantityField = value End Set End Property - + ''' - _ + Public Property ShortageActionCode() As ShortageActionCodeType Get Return Me.shortageActionCodeField @@ -26163,9 +26163,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shortageActionCodeField = value End Set End Property - + ''' - _ + Public Property RejectedQuantity() As RejectedQuantityType Get Return Me.rejectedQuantityField @@ -26174,9 +26174,9 @@ Namespace Peppol.BISBilling30CreditNote Me.rejectedQuantityField = value End Set End Property - + ''' - _ + Public Property RejectReasonCode() As RejectReasonCodeType Get Return Me.rejectReasonCodeField @@ -26185,9 +26185,9 @@ Namespace Peppol.BISBilling30CreditNote Me.rejectReasonCodeField = value End Set End Property - + ''' - _ + Public Property RejectReason() As RejectReasonType() Get Return Me.rejectReasonField @@ -26196,9 +26196,9 @@ Namespace Peppol.BISBilling30CreditNote Me.rejectReasonField = value End Set End Property - + ''' - _ + Public Property RejectActionCode() As RejectActionCodeType Get Return Me.rejectActionCodeField @@ -26207,9 +26207,9 @@ Namespace Peppol.BISBilling30CreditNote Me.rejectActionCodeField = value End Set End Property - + ''' - _ + Public Property QuantityDiscrepancyCode() As QuantityDiscrepancyCodeType Get Return Me.quantityDiscrepancyCodeField @@ -26218,9 +26218,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityDiscrepancyCodeField = value End Set End Property - + ''' - _ + Public Property OversupplyQuantity() As OversupplyQuantityType Get Return Me.oversupplyQuantityField @@ -26229,9 +26229,9 @@ Namespace Peppol.BISBilling30CreditNote Me.oversupplyQuantityField = value End Set End Property - + ''' - _ + Public Property ReceivedDate() As ReceivedDateType Get Return Me.receivedDateField @@ -26240,9 +26240,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedDateField = value End Set End Property - + ''' - _ + Public Property TimingComplaintCode() As TimingComplaintCodeType Get Return Me.timingComplaintCodeField @@ -26251,9 +26251,9 @@ Namespace Peppol.BISBilling30CreditNote Me.timingComplaintCodeField = value End Set End Property - + ''' - _ + Public Property TimingComplaint() As TimingComplaintType Get Return Me.timingComplaintField @@ -26262,7 +26262,7 @@ Namespace Peppol.BISBilling30CreditNote Me.timingComplaintField = value End Set End Property - + ''' Public Property OrderLineReference() As OrderLineReferenceType Get @@ -26272,9 +26272,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -26283,9 +26283,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -26294,9 +26294,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property Item() As ItemType() Get Return Me.itemField @@ -26305,9 +26305,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property Shipment() As ShipmentType() Get Return Me.shipmentField @@ -26317,140 +26317,140 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ShipmentStageType - + Private idField As IDType - + Private transportModeCodeField As TransportModeCodeType - + Private transportMeansTypeCodeField As TransportMeansTypeCodeType - + Private transitDirectionCodeField As TransitDirectionCodeType - + Private preCarriageIndicatorField As PreCarriageIndicatorType - + Private onCarriageIndicatorField As OnCarriageIndicatorType - + Private estimatedDeliveryDateField As EstimatedDeliveryDateType - + Private estimatedDeliveryTimeField As EstimatedDeliveryTimeType - + Private requiredDeliveryDateField As RequiredDeliveryDateType - + Private requiredDeliveryTimeField As RequiredDeliveryTimeType - + Private loadingSequenceIDField As LoadingSequenceIDType - + Private successiveSequenceIDField As SuccessiveSequenceIDType - + Private instructionsField() As InstructionsType - + Private demurrageInstructionsField() As DemurrageInstructionsType - + Private crewQuantityField As CrewQuantityType - + Private passengerQuantityField As PassengerQuantityType - + Private transitPeriodField As PeriodType - + Private carrierPartyField() As PartyType - + Private transportMeansField As TransportMeansType - + Private loadingPortLocationField As LocationType1 - + Private unloadingPortLocationField As LocationType1 - + Private transshipPortLocationField As LocationType1 - + Private loadingTransportEventField As TransportEventType - + Private examinationTransportEventField As TransportEventType - + Private availabilityTransportEventField As TransportEventType - + Private exportationTransportEventField As TransportEventType - + Private dischargeTransportEventField As TransportEventType - + Private warehousingTransportEventField As TransportEventType - + Private takeoverTransportEventField As TransportEventType - + Private optionalTakeoverTransportEventField As TransportEventType - + Private dropoffTransportEventField As TransportEventType - + Private actualPickupTransportEventField As TransportEventType - + Private deliveryTransportEventField As TransportEventType - + Private receiptTransportEventField As TransportEventType - + Private storageTransportEventField As TransportEventType - + Private acceptanceTransportEventField As TransportEventType - + Private terminalOperatorPartyField As PartyType - + Private customsAgentPartyField As PartyType - + Private estimatedTransitPeriodField As PeriodType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private freightChargeLocationField As LocationType1 - + Private detentionTransportEventField() As TransportEventType - + Private requestedDepartureTransportEventField As TransportEventType - + Private requestedArrivalTransportEventField As TransportEventType - + Private requestedWaypointTransportEventField() As TransportEventType - + Private plannedDepartureTransportEventField As TransportEventType - + Private plannedArrivalTransportEventField As TransportEventType - + Private plannedWaypointTransportEventField() As TransportEventType - + Private actualDepartureTransportEventField As TransportEventType - + Private actualWaypointTransportEventField As TransportEventType - + Private actualArrivalTransportEventField As TransportEventType - + Private transportEventField() As TransportEventType - + Private estimatedDepartureTransportEventField As TransportEventType - + Private estimatedArrivalTransportEventField As TransportEventType - + Private passengerPersonField() As PersonType - + Private driverPersonField() As PersonType - + Private reportingPersonField As PersonType - + Private crewMemberPersonField() As PersonType - + Private securityOfficerPersonField As PersonType - + Private masterPersonField As PersonType - + Private shipsSurgeonPersonField As PersonType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -26459,9 +26459,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property TransportModeCode() As TransportModeCodeType Get Return Me.transportModeCodeField @@ -26470,9 +26470,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportModeCodeField = value End Set End Property - + ''' - _ + Public Property TransportMeansTypeCode() As TransportMeansTypeCodeType Get Return Me.transportMeansTypeCodeField @@ -26481,9 +26481,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportMeansTypeCodeField = value End Set End Property - + ''' - _ + Public Property TransitDirectionCode() As TransitDirectionCodeType Get Return Me.transitDirectionCodeField @@ -26492,9 +26492,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transitDirectionCodeField = value End Set End Property - + ''' - _ + Public Property PreCarriageIndicator() As PreCarriageIndicatorType Get Return Me.preCarriageIndicatorField @@ -26503,9 +26503,9 @@ Namespace Peppol.BISBilling30CreditNote Me.preCarriageIndicatorField = value End Set End Property - + ''' - _ + Public Property OnCarriageIndicator() As OnCarriageIndicatorType Get Return Me.onCarriageIndicatorField @@ -26514,9 +26514,9 @@ Namespace Peppol.BISBilling30CreditNote Me.onCarriageIndicatorField = value End Set End Property - + ''' - _ + Public Property EstimatedDeliveryDate() As EstimatedDeliveryDateType Get Return Me.estimatedDeliveryDateField @@ -26525,9 +26525,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDeliveryDateField = value End Set End Property - + ''' - _ + Public Property EstimatedDeliveryTime() As EstimatedDeliveryTimeType Get Return Me.estimatedDeliveryTimeField @@ -26536,9 +26536,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property RequiredDeliveryDate() As RequiredDeliveryDateType Get Return Me.requiredDeliveryDateField @@ -26547,9 +26547,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredDeliveryDateField = value End Set End Property - + ''' - _ + Public Property RequiredDeliveryTime() As RequiredDeliveryTimeType Get Return Me.requiredDeliveryTimeField @@ -26558,9 +26558,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property LoadingSequenceID() As LoadingSequenceIDType Get Return Me.loadingSequenceIDField @@ -26569,9 +26569,9 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingSequenceIDField = value End Set End Property - + ''' - _ + Public Property SuccessiveSequenceID() As SuccessiveSequenceIDType Get Return Me.successiveSequenceIDField @@ -26580,9 +26580,9 @@ Namespace Peppol.BISBilling30CreditNote Me.successiveSequenceIDField = value End Set End Property - + ''' - _ + Public Property Instructions() As InstructionsType() Get Return Me.instructionsField @@ -26591,9 +26591,9 @@ Namespace Peppol.BISBilling30CreditNote Me.instructionsField = value End Set End Property - + ''' - _ + Public Property DemurrageInstructions() As DemurrageInstructionsType() Get Return Me.demurrageInstructionsField @@ -26602,9 +26602,9 @@ Namespace Peppol.BISBilling30CreditNote Me.demurrageInstructionsField = value End Set End Property - + ''' - _ + Public Property CrewQuantity() As CrewQuantityType Get Return Me.crewQuantityField @@ -26613,9 +26613,9 @@ Namespace Peppol.BISBilling30CreditNote Me.crewQuantityField = value End Set End Property - + ''' - _ + Public Property PassengerQuantity() As PassengerQuantityType Get Return Me.passengerQuantityField @@ -26624,7 +26624,7 @@ Namespace Peppol.BISBilling30CreditNote Me.passengerQuantityField = value End Set End Property - + ''' Public Property TransitPeriod() As PeriodType Get @@ -26634,9 +26634,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transitPeriodField = value End Set End Property - + ''' - _ + Public Property CarrierParty() As PartyType() Get Return Me.carrierPartyField @@ -26645,7 +26645,7 @@ Namespace Peppol.BISBilling30CreditNote Me.carrierPartyField = value End Set End Property - + ''' Public Property TransportMeans() As TransportMeansType Get @@ -26655,7 +26655,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportMeansField = value End Set End Property - + ''' Public Property LoadingPortLocation() As LocationType1 Get @@ -26665,7 +26665,7 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingPortLocationField = value End Set End Property - + ''' Public Property UnloadingPortLocation() As LocationType1 Get @@ -26675,7 +26675,7 @@ Namespace Peppol.BISBilling30CreditNote Me.unloadingPortLocationField = value End Set End Property - + ''' Public Property TransshipPortLocation() As LocationType1 Get @@ -26685,7 +26685,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transshipPortLocationField = value End Set End Property - + ''' Public Property LoadingTransportEvent() As TransportEventType Get @@ -26695,7 +26695,7 @@ Namespace Peppol.BISBilling30CreditNote Me.loadingTransportEventField = value End Set End Property - + ''' Public Property ExaminationTransportEvent() As TransportEventType Get @@ -26705,7 +26705,7 @@ Namespace Peppol.BISBilling30CreditNote Me.examinationTransportEventField = value End Set End Property - + ''' Public Property AvailabilityTransportEvent() As TransportEventType Get @@ -26715,7 +26715,7 @@ Namespace Peppol.BISBilling30CreditNote Me.availabilityTransportEventField = value End Set End Property - + ''' Public Property ExportationTransportEvent() As TransportEventType Get @@ -26725,7 +26725,7 @@ Namespace Peppol.BISBilling30CreditNote Me.exportationTransportEventField = value End Set End Property - + ''' Public Property DischargeTransportEvent() As TransportEventType Get @@ -26735,7 +26735,7 @@ Namespace Peppol.BISBilling30CreditNote Me.dischargeTransportEventField = value End Set End Property - + ''' Public Property WarehousingTransportEvent() As TransportEventType Get @@ -26745,7 +26745,7 @@ Namespace Peppol.BISBilling30CreditNote Me.warehousingTransportEventField = value End Set End Property - + ''' Public Property TakeoverTransportEvent() As TransportEventType Get @@ -26755,7 +26755,7 @@ Namespace Peppol.BISBilling30CreditNote Me.takeoverTransportEventField = value End Set End Property - + ''' Public Property OptionalTakeoverTransportEvent() As TransportEventType Get @@ -26765,7 +26765,7 @@ Namespace Peppol.BISBilling30CreditNote Me.optionalTakeoverTransportEventField = value End Set End Property - + ''' Public Property DropoffTransportEvent() As TransportEventType Get @@ -26775,7 +26775,7 @@ Namespace Peppol.BISBilling30CreditNote Me.dropoffTransportEventField = value End Set End Property - + ''' Public Property ActualPickupTransportEvent() As TransportEventType Get @@ -26785,7 +26785,7 @@ Namespace Peppol.BISBilling30CreditNote Me.actualPickupTransportEventField = value End Set End Property - + ''' Public Property DeliveryTransportEvent() As TransportEventType Get @@ -26795,7 +26795,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTransportEventField = value End Set End Property - + ''' Public Property ReceiptTransportEvent() As TransportEventType Get @@ -26805,7 +26805,7 @@ Namespace Peppol.BISBilling30CreditNote Me.receiptTransportEventField = value End Set End Property - + ''' Public Property StorageTransportEvent() As TransportEventType Get @@ -26815,7 +26815,7 @@ Namespace Peppol.BISBilling30CreditNote Me.storageTransportEventField = value End Set End Property - + ''' Public Property AcceptanceTransportEvent() As TransportEventType Get @@ -26825,7 +26825,7 @@ Namespace Peppol.BISBilling30CreditNote Me.acceptanceTransportEventField = value End Set End Property - + ''' Public Property TerminalOperatorParty() As PartyType Get @@ -26835,7 +26835,7 @@ Namespace Peppol.BISBilling30CreditNote Me.terminalOperatorPartyField = value End Set End Property - + ''' Public Property CustomsAgentParty() As PartyType Get @@ -26845,7 +26845,7 @@ Namespace Peppol.BISBilling30CreditNote Me.customsAgentPartyField = value End Set End Property - + ''' Public Property EstimatedTransitPeriod() As PeriodType Get @@ -26855,9 +26855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedTransitPeriodField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -26866,7 +26866,7 @@ Namespace Peppol.BISBilling30CreditNote Me.freightAllowanceChargeField = value End Set End Property - + ''' Public Property FreightChargeLocation() As LocationType1 Get @@ -26876,9 +26876,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freightChargeLocationField = value End Set End Property - + ''' - _ + Public Property DetentionTransportEvent() As TransportEventType() Get Return Me.detentionTransportEventField @@ -26887,7 +26887,7 @@ Namespace Peppol.BISBilling30CreditNote Me.detentionTransportEventField = value End Set End Property - + ''' Public Property RequestedDepartureTransportEvent() As TransportEventType Get @@ -26897,7 +26897,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedDepartureTransportEventField = value End Set End Property - + ''' Public Property RequestedArrivalTransportEvent() As TransportEventType Get @@ -26907,9 +26907,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property RequestedWaypointTransportEvent() As TransportEventType() Get Return Me.requestedWaypointTransportEventField @@ -26918,7 +26918,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedWaypointTransportEventField = value End Set End Property - + ''' Public Property PlannedDepartureTransportEvent() As TransportEventType Get @@ -26928,7 +26928,7 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedDepartureTransportEventField = value End Set End Property - + ''' Public Property PlannedArrivalTransportEvent() As TransportEventType Get @@ -26938,9 +26938,9 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property PlannedWaypointTransportEvent() As TransportEventType() Get Return Me.plannedWaypointTransportEventField @@ -26949,7 +26949,7 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedWaypointTransportEventField = value End Set End Property - + ''' Public Property ActualDepartureTransportEvent() As TransportEventType Get @@ -26959,7 +26959,7 @@ Namespace Peppol.BISBilling30CreditNote Me.actualDepartureTransportEventField = value End Set End Property - + ''' Public Property ActualWaypointTransportEvent() As TransportEventType Get @@ -26969,7 +26969,7 @@ Namespace Peppol.BISBilling30CreditNote Me.actualWaypointTransportEventField = value End Set End Property - + ''' Public Property ActualArrivalTransportEvent() As TransportEventType Get @@ -26979,9 +26979,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -26990,7 +26990,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportEventField = value End Set End Property - + ''' Public Property EstimatedDepartureTransportEvent() As TransportEventType Get @@ -27000,7 +27000,7 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDepartureTransportEventField = value End Set End Property - + ''' Public Property EstimatedArrivalTransportEvent() As TransportEventType Get @@ -27010,9 +27010,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property PassengerPerson() As PersonType() Get Return Me.passengerPersonField @@ -27021,9 +27021,9 @@ Namespace Peppol.BISBilling30CreditNote Me.passengerPersonField = value End Set End Property - + ''' - _ + Public Property DriverPerson() As PersonType() Get Return Me.driverPersonField @@ -27032,7 +27032,7 @@ Namespace Peppol.BISBilling30CreditNote Me.driverPersonField = value End Set End Property - + ''' Public Property ReportingPerson() As PersonType Get @@ -27042,9 +27042,9 @@ Namespace Peppol.BISBilling30CreditNote Me.reportingPersonField = value End Set End Property - + ''' - _ + Public Property CrewMemberPerson() As PersonType() Get Return Me.crewMemberPersonField @@ -27053,7 +27053,7 @@ Namespace Peppol.BISBilling30CreditNote Me.crewMemberPersonField = value End Set End Property - + ''' Public Property SecurityOfficerPerson() As PersonType Get @@ -27063,7 +27063,7 @@ Namespace Peppol.BISBilling30CreditNote Me.securityOfficerPersonField = value End Set End Property - + ''' Public Property MasterPerson() As PersonType Get @@ -27073,7 +27073,7 @@ Namespace Peppol.BISBilling30CreditNote Me.masterPersonField = value End Set End Property - + ''' Public Property ShipsSurgeonPerson() As PersonType Get @@ -27084,26 +27084,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EnvironmentalEmissionType - + Private environmentalEmissionTypeCodeField As EnvironmentalEmissionTypeCodeType - + Private valueMeasureField As ValueMeasureType - + Private descriptionField() As DescriptionType - + Private emissionCalculationMethodField() As EmissionCalculationMethodType - + ''' - _ + Public Property EnvironmentalEmissionTypeCode() As EnvironmentalEmissionTypeCodeType Get Return Me.environmentalEmissionTypeCodeField @@ -27112,9 +27112,9 @@ Namespace Peppol.BISBilling30CreditNote Me.environmentalEmissionTypeCodeField = value End Set End Property - + ''' - _ + Public Property ValueMeasure() As ValueMeasureType Get Return Me.valueMeasureField @@ -27123,9 +27123,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueMeasureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -27134,9 +27134,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EmissionCalculationMethod() As EmissionCalculationMethodType() Get Return Me.emissionCalculationMethodField @@ -27146,26 +27146,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EmissionCalculationMethodType - + Private calculationMethodCodeField As CalculationMethodCodeType - + Private fullnessIndicationCodeField As FullnessIndicationCodeType - + Private measurementFromLocationField As LocationType1 - + Private measurementToLocationField As LocationType1 - + ''' - _ + Public Property CalculationMethodCode() As CalculationMethodCodeType Get Return Me.calculationMethodCodeField @@ -27174,9 +27174,9 @@ Namespace Peppol.BISBilling30CreditNote Me.calculationMethodCodeField = value End Set End Property - + ''' - _ + Public Property FullnessIndicationCode() As FullnessIndicationCodeType Get Return Me.fullnessIndicationCodeField @@ -27185,7 +27185,7 @@ Namespace Peppol.BISBilling30CreditNote Me.fullnessIndicationCodeField = value End Set End Property - + ''' Public Property MeasurementFromLocation() As LocationType1 Get @@ -27195,7 +27195,7 @@ Namespace Peppol.BISBilling30CreditNote Me.measurementFromLocationField = value End Set End Property - + ''' Public Property MeasurementToLocation() As LocationType1 Get @@ -27206,20 +27206,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ServiceFrequencyType - + Private weekDayCodeField As WeekDayCodeType - + ''' - _ + Public Property WeekDayCode() As WeekDayCodeType Get Return Me.weekDayCodeField @@ -27229,24 +27229,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RelatedItemType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -27255,9 +27255,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -27266,9 +27266,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -27278,32 +27278,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CustomerPartyType - + Private customerAssignedAccountIDField As CustomerAssignedAccountIDType - + Private supplierAssignedAccountIDField As SupplierAssignedAccountIDType - + Private additionalAccountIDField() As AdditionalAccountIDType - + Private partyField As PartyType - + Private deliveryContactField As ContactType - + Private accountingContactField As ContactType - + Private buyerContactField As ContactType - + ''' - _ + Public Property CustomerAssignedAccountID() As CustomerAssignedAccountIDType Get Return Me.customerAssignedAccountIDField @@ -27312,9 +27312,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customerAssignedAccountIDField = value End Set End Property - + ''' - _ + Public Property SupplierAssignedAccountID() As SupplierAssignedAccountIDType Get Return Me.supplierAssignedAccountIDField @@ -27323,9 +27323,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supplierAssignedAccountIDField = value End Set End Property - + ''' - _ + Public Property AdditionalAccountID() As AdditionalAccountIDType() Get Return Me.additionalAccountIDField @@ -27334,7 +27334,7 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalAccountIDField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -27344,7 +27344,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyField = value End Set End Property - + ''' Public Property DeliveryContact() As ContactType Get @@ -27354,7 +27354,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryContactField = value End Set End Property - + ''' Public Property AccountingContact() As ContactType Get @@ -27364,7 +27364,7 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingContactField = value End Set End Property - + ''' Public Property BuyerContact() As ContactType Get @@ -27375,34 +27375,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ActivityDataLineType - + Private idField As IDType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private activityPeriodField As PeriodType - + Private activityOriginLocationField As LocationType1 - + Private activityFinalLocationField As LocationType1 - + Private salesItemField() As SalesItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -27411,9 +27411,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -27422,7 +27422,7 @@ Namespace Peppol.BISBilling30CreditNote Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' Public Property BuyerCustomerParty() As CustomerPartyType Get @@ -27432,7 +27432,7 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -27442,7 +27442,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property ActivityPeriod() As PeriodType Get @@ -27452,7 +27452,7 @@ Namespace Peppol.BISBilling30CreditNote Me.activityPeriodField = value End Set End Property - + ''' Public Property ActivityOriginLocation() As LocationType1 Get @@ -27462,7 +27462,7 @@ Namespace Peppol.BISBilling30CreditNote Me.activityOriginLocationField = value End Set End Property - + ''' Public Property ActivityFinalLocation() As LocationType1 Get @@ -27472,9 +27472,9 @@ Namespace Peppol.BISBilling30CreditNote Me.activityFinalLocationField = value End Set End Property - + ''' - _ + Public Property SalesItem() As SalesItemType() Get Return Me.salesItemField @@ -27484,28 +27484,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SalesItemType - + Private quantityField As QuantityType2 - + Private activityPropertyField() As ActivityPropertyType - + Private taxExclusivePriceField() As PriceType - + Private taxInclusivePriceField() As PriceType - + Private itemField As ItemType - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -27514,9 +27514,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property ActivityProperty() As ActivityPropertyType() Get Return Me.activityPropertyField @@ -27525,9 +27525,9 @@ Namespace Peppol.BISBilling30CreditNote Me.activityPropertyField = value End Set End Property - + ''' - _ + Public Property TaxExclusivePrice() As PriceType() Get Return Me.taxExclusivePriceField @@ -27536,9 +27536,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxExclusivePriceField = value End Set End Property - + ''' - _ + Public Property TaxInclusivePrice() As PriceType() Get Return Me.taxInclusivePriceField @@ -27547,7 +27547,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxInclusivePriceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -27558,22 +27558,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ActivityPropertyType - + Private nameField As NameType1 - + Private valueField As ValueType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -27582,9 +27582,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -27594,26 +27594,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DocumentResponseType - + Private responseField As ResponseType - + Private documentReferenceField() As DocumentReferenceType - + Private issuerPartyField As PartyType - + Private recipientPartyField As PartyType - + Private lineResponseField() As LineResponseType - + ''' Public Property Response() As ResponseType Get @@ -27623,9 +27623,9 @@ Namespace Peppol.BISBilling30CreditNote Me.responseField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -27634,7 +27634,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -27644,7 +27644,7 @@ Namespace Peppol.BISBilling30CreditNote Me.issuerPartyField = value End Set End Property - + ''' Public Property RecipientParty() As PartyType Get @@ -27654,9 +27654,9 @@ Namespace Peppol.BISBilling30CreditNote Me.recipientPartyField = value End Set End Property - + ''' - _ + Public Property LineResponse() As LineResponseType() Get Return Me.lineResponseField @@ -27666,30 +27666,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ResponseType - + Private referenceIDField As ReferenceIDType - + Private responseCodeField As ResponseCodeType - + Private descriptionField() As DescriptionType - + Private effectiveDateField As EffectiveDateType - + Private effectiveTimeField As EffectiveTimeType - + Private statusField() As StatusType - + ''' - _ + Public Property ReferenceID() As ReferenceIDType Get Return Me.referenceIDField @@ -27698,9 +27698,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceIDField = value End Set End Property - + ''' - _ + Public Property ResponseCode() As ResponseCodeType Get Return Me.responseCodeField @@ -27709,9 +27709,9 @@ Namespace Peppol.BISBilling30CreditNote Me.responseCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -27720,9 +27720,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EffectiveDate() As EffectiveDateType Get Return Me.effectiveDateField @@ -27731,9 +27731,9 @@ Namespace Peppol.BISBilling30CreditNote Me.effectiveDateField = value End Set End Property - + ''' - _ + Public Property EffectiveTime() As EffectiveTimeType Get Return Me.effectiveTimeField @@ -27742,9 +27742,9 @@ Namespace Peppol.BISBilling30CreditNote Me.effectiveTimeField = value End Set End Property - + ''' - _ + Public Property Status() As StatusType() Get Return Me.statusField @@ -27754,20 +27754,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LineResponseType - + Private lineReferenceField As LineReferenceType - + Private responseField() As ResponseType - + ''' Public Property LineReference() As LineReferenceType Get @@ -27777,9 +27777,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineReferenceField = value End Set End Property - + ''' - _ + Public Property Response() As ResponseType() Get Return Me.responseField @@ -27789,46 +27789,46 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class QualifyingPartyType - + Private participationPercentField As ParticipationPercentType - + Private personalSituationField() As PersonalSituationType - + Private operatingYearsQuantityField As OperatingYearsQuantityType - + Private employeeQuantityField As EmployeeQuantityType - + Private businessClassificationEvidenceIDField As BusinessClassificationEvidenceIDType - + Private businessIdentityEvidenceIDField As BusinessIdentityEvidenceIDType - + Private tendererRoleCodeField As TendererRoleCodeType - + Private businessClassificationSchemeField As ClassificationSchemeType - + Private technicalCapabilityField() As CapabilityType - + Private financialCapabilityField() As CapabilityType - + Private completedTaskField() As CompletedTaskType - + Private declarationField() As DeclarationType - + Private partyField As PartyType - + Private economicOperatorRoleField As EconomicOperatorRoleType - + ''' - _ + Public Property ParticipationPercent() As ParticipationPercentType Get Return Me.participationPercentField @@ -27837,9 +27837,9 @@ Namespace Peppol.BISBilling30CreditNote Me.participationPercentField = value End Set End Property - + ''' - _ + Public Property PersonalSituation() As PersonalSituationType() Get Return Me.personalSituationField @@ -27848,9 +27848,9 @@ Namespace Peppol.BISBilling30CreditNote Me.personalSituationField = value End Set End Property - + ''' - _ + Public Property OperatingYearsQuantity() As OperatingYearsQuantityType Get Return Me.operatingYearsQuantityField @@ -27859,9 +27859,9 @@ Namespace Peppol.BISBilling30CreditNote Me.operatingYearsQuantityField = value End Set End Property - + ''' - _ + Public Property EmployeeQuantity() As EmployeeQuantityType Get Return Me.employeeQuantityField @@ -27870,9 +27870,9 @@ Namespace Peppol.BISBilling30CreditNote Me.employeeQuantityField = value End Set End Property - + ''' - _ + Public Property BusinessClassificationEvidenceID() As BusinessClassificationEvidenceIDType Get Return Me.businessClassificationEvidenceIDField @@ -27881,9 +27881,9 @@ Namespace Peppol.BISBilling30CreditNote Me.businessClassificationEvidenceIDField = value End Set End Property - + ''' - _ + Public Property BusinessIdentityEvidenceID() As BusinessIdentityEvidenceIDType Get Return Me.businessIdentityEvidenceIDField @@ -27892,9 +27892,9 @@ Namespace Peppol.BISBilling30CreditNote Me.businessIdentityEvidenceIDField = value End Set End Property - + ''' - _ + Public Property TendererRoleCode() As TendererRoleCodeType Get Return Me.tendererRoleCodeField @@ -27903,7 +27903,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tendererRoleCodeField = value End Set End Property - + ''' Public Property BusinessClassificationScheme() As ClassificationSchemeType Get @@ -27913,9 +27913,9 @@ Namespace Peppol.BISBilling30CreditNote Me.businessClassificationSchemeField = value End Set End Property - + ''' - _ + Public Property TechnicalCapability() As CapabilityType() Get Return Me.technicalCapabilityField @@ -27924,9 +27924,9 @@ Namespace Peppol.BISBilling30CreditNote Me.technicalCapabilityField = value End Set End Property - + ''' - _ + Public Property FinancialCapability() As CapabilityType() Get Return Me.financialCapabilityField @@ -27935,9 +27935,9 @@ Namespace Peppol.BISBilling30CreditNote Me.financialCapabilityField = value End Set End Property - + ''' - _ + Public Property CompletedTask() As CompletedTaskType() Get Return Me.completedTaskField @@ -27946,9 +27946,9 @@ Namespace Peppol.BISBilling30CreditNote Me.completedTaskField = value End Set End Property - + ''' - _ + Public Property Declaration() As DeclarationType() Get Return Me.declarationField @@ -27957,7 +27957,7 @@ Namespace Peppol.BISBilling30CreditNote Me.declarationField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -27967,7 +27967,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyField = value End Set End Property - + ''' Public Property EconomicOperatorRole() As EconomicOperatorRoleType Get @@ -27978,46 +27978,46 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ClassificationSchemeType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private lastRevisionDateField As LastRevisionDateType - + Private lastRevisionTimeField As LastRevisionTimeType - + Private noteField() As NoteType - + Private nameField As NameType1 - + Private descriptionField() As DescriptionType - + Private agencyIDField As AgencyIDType - + Private agencyNameField As AgencyNameType - + Private versionIDField As VersionIDType - + Private uRIField As URIType - + Private schemeURIField As SchemeURIType - + Private languageIDField As LanguageIDType - + Private classificationCategoryField() As ClassificationCategoryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -28026,9 +28026,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -28037,9 +28037,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property LastRevisionDate() As LastRevisionDateType Get Return Me.lastRevisionDateField @@ -28048,9 +28048,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lastRevisionDateField = value End Set End Property - + ''' - _ + Public Property LastRevisionTime() As LastRevisionTimeType Get Return Me.lastRevisionTimeField @@ -28059,9 +28059,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lastRevisionTimeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -28070,9 +28070,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -28081,9 +28081,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28092,9 +28092,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property AgencyID() As AgencyIDType Get Return Me.agencyIDField @@ -28103,9 +28103,9 @@ Namespace Peppol.BISBilling30CreditNote Me.agencyIDField = value End Set End Property - + ''' - _ + Public Property AgencyName() As AgencyNameType Get Return Me.agencyNameField @@ -28114,9 +28114,9 @@ Namespace Peppol.BISBilling30CreditNote Me.agencyNameField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -28125,9 +28125,9 @@ Namespace Peppol.BISBilling30CreditNote Me.versionIDField = value End Set End Property - + ''' - _ + Public Property URI() As URIType Get Return Me.uRIField @@ -28136,9 +28136,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uRIField = value End Set End Property - + ''' - _ + Public Property SchemeURI() As SchemeURIType Get Return Me.schemeURIField @@ -28147,9 +28147,9 @@ Namespace Peppol.BISBilling30CreditNote Me.schemeURIField = value End Set End Property - + ''' - _ + Public Property LanguageID() As LanguageIDType Get Return Me.languageIDField @@ -28158,9 +28158,9 @@ Namespace Peppol.BISBilling30CreditNote Me.languageIDField = value End Set End Property - + ''' - _ + Public Property ClassificationCategory() As ClassificationCategoryType() Get Return Me.classificationCategoryField @@ -28170,26 +28170,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ClassificationCategoryType - + Private nameField As NameType1 - + Private codeValueField As CodeValueType - + Private descriptionField() As DescriptionType - + Private categorizesClassificationCategoryField() As ClassificationCategoryType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -28198,9 +28198,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property CodeValue() As CodeValueType Get Return Me.codeValueField @@ -28209,9 +28209,9 @@ Namespace Peppol.BISBilling30CreditNote Me.codeValueField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28220,9 +28220,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CategorizesClassificationCategory() As ClassificationCategoryType() Get Return Me.categorizesClassificationCategoryField @@ -28232,30 +28232,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CapabilityType - + Private capabilityTypeCodeField As CapabilityTypeCodeType - + Private descriptionField() As DescriptionType - + Private valueAmountField As ValueAmountType - + Private valueQuantityField As ValueQuantityType - + Private evidenceSuppliedField() As EvidenceSuppliedType - + Private validityPeriodField As PeriodType - + ''' - _ + Public Property CapabilityTypeCode() As CapabilityTypeCodeType Get Return Me.capabilityTypeCodeField @@ -28264,9 +28264,9 @@ Namespace Peppol.BISBilling30CreditNote Me.capabilityTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28275,9 +28275,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ValueAmount() As ValueAmountType Get Return Me.valueAmountField @@ -28286,9 +28286,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueAmountField = value End Set End Property - + ''' - _ + Public Property ValueQuantity() As ValueQuantityType Get Return Me.valueQuantityField @@ -28297,9 +28297,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueQuantityField = value End Set End Property - + ''' - _ + Public Property EvidenceSupplied() As EvidenceSuppliedType() Get Return Me.evidenceSuppliedField @@ -28308,7 +28308,7 @@ Namespace Peppol.BISBilling30CreditNote Me.evidenceSuppliedField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -28319,20 +28319,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EvidenceSuppliedType - + Private idField As IDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -28342,32 +28342,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CompletedTaskType - + Private annualAverageAmountField As AnnualAverageAmountType - + Private totalTaskAmountField As TotalTaskAmountType - + Private partyCapacityAmountField As PartyCapacityAmountType - + Private descriptionField() As DescriptionType - + Private evidenceSuppliedField() As EvidenceSuppliedType - + Private periodField As PeriodType - + Private recipientCustomerPartyField As CustomerPartyType - + ''' - _ + Public Property AnnualAverageAmount() As AnnualAverageAmountType Get Return Me.annualAverageAmountField @@ -28376,9 +28376,9 @@ Namespace Peppol.BISBilling30CreditNote Me.annualAverageAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaskAmount() As TotalTaskAmountType Get Return Me.totalTaskAmountField @@ -28387,9 +28387,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalTaskAmountField = value End Set End Property - + ''' - _ + Public Property PartyCapacityAmount() As PartyCapacityAmountType Get Return Me.partyCapacityAmountField @@ -28398,9 +28398,9 @@ Namespace Peppol.BISBilling30CreditNote Me.partyCapacityAmountField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28409,9 +28409,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EvidenceSupplied() As EvidenceSuppliedType() Get Return Me.evidenceSuppliedField @@ -28420,7 +28420,7 @@ Namespace Peppol.BISBilling30CreditNote Me.evidenceSuppliedField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -28430,7 +28430,7 @@ Namespace Peppol.BISBilling30CreditNote Me.periodField = value End Set End Property - + ''' Public Property RecipientCustomerParty() As CustomerPartyType Get @@ -28441,26 +28441,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DeclarationType - + Private nameField() As NameType1 - + Private declarationTypeCodeField As DeclarationTypeCodeType - + Private descriptionField() As DescriptionType - + Private evidenceSuppliedField() As EvidenceSuppliedType - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -28469,9 +28469,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property DeclarationTypeCode() As DeclarationTypeCodeType Get Return Me.declarationTypeCodeField @@ -28480,9 +28480,9 @@ Namespace Peppol.BISBilling30CreditNote Me.declarationTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28491,9 +28491,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EvidenceSupplied() As EvidenceSuppliedType() Get Return Me.evidenceSuppliedField @@ -28503,22 +28503,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EconomicOperatorRoleType - + Private roleCodeField As RoleCodeType - + Private roleDescriptionField() As RoleDescriptionType - + ''' - _ + Public Property RoleCode() As RoleCodeType Get Return Me.roleCodeField @@ -28527,9 +28527,9 @@ Namespace Peppol.BISBilling30CreditNote Me.roleCodeField = value End Set End Property - + ''' - _ + Public Property RoleDescription() As RoleDescriptionType() Get Return Me.roleDescriptionField @@ -28539,32 +28539,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SubcontractTermsType - + Private rateField As RateType1 - + Private unknownPriceIndicatorField As UnknownPriceIndicatorType - + Private descriptionField() As DescriptionType - + Private amountField As AmountType2 - + Private subcontractingConditionsCodeField As SubcontractingConditionsCodeType - + Private maximumPercentField As MaximumPercentType - + Private minimumPercentField As MinimumPercentType - + ''' - _ + Public Property Rate() As RateType1 Get Return Me.rateField @@ -28573,9 +28573,9 @@ Namespace Peppol.BISBilling30CreditNote Me.rateField = value End Set End Property - + ''' - _ + Public Property UnknownPriceIndicator() As UnknownPriceIndicatorType Get Return Me.unknownPriceIndicatorField @@ -28584,9 +28584,9 @@ Namespace Peppol.BISBilling30CreditNote Me.unknownPriceIndicatorField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28595,9 +28595,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -28606,9 +28606,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property SubcontractingConditionsCode() As SubcontractingConditionsCodeType Get Return Me.subcontractingConditionsCodeField @@ -28617,9 +28617,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subcontractingConditionsCodeField = value End Set End Property - + ''' - _ + Public Property MaximumPercent() As MaximumPercentType Get Return Me.maximumPercentField @@ -28628,9 +28628,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumPercentField = value End Set End Property - + ''' - _ + Public Property MinimumPercent() As MinimumPercentType Get Return Me.minimumPercentField @@ -28640,82 +28640,82 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class LineItemType - + Private idField As IDType - + Private salesOrderIDField As SalesOrderIDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private lineStatusCodeField As LineStatusCodeType - + Private quantityField As QuantityType2 - + Private lineExtensionAmountField As LineExtensionAmountType - + Private totalTaxAmountField As TotalTaxAmountType - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private minimumBackorderQuantityField As MinimumBackorderQuantityType - + Private maximumBackorderQuantityField As MaximumBackorderQuantityType - + Private inspectionMethodCodeField As InspectionMethodCodeType - + Private partialDeliveryIndicatorField As PartialDeliveryIndicatorType - + Private backOrderAllowedIndicatorField As BackOrderAllowedIndicatorType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private warrantyInformationField() As WarrantyInformationType - + Private deliveryField() As DeliveryType - + Private deliveryTermsField As DeliveryTermsType - + Private originatorPartyField As PartyType - + Private orderedShipmentField() As OrderedShipmentType - + Private pricingReferenceField As PricingReferenceType - + Private allowanceChargeField() As AllowanceChargeType - + Private priceField As PriceType - + Private itemField As ItemType - + Private subLineItemField() As LineItemType - + Private warrantyValidityPeriodField As PeriodType - + Private warrantyPartyField As PartyType - + Private taxTotalField() As TaxTotalType - + Private itemPriceExtensionField As PriceExtensionType - + Private lineReferenceField() As LineReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -28724,9 +28724,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SalesOrderID() As SalesOrderIDType Get Return Me.salesOrderIDField @@ -28735,9 +28735,9 @@ Namespace Peppol.BISBilling30CreditNote Me.salesOrderIDField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -28746,9 +28746,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -28757,9 +28757,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -28768,9 +28768,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineStatusCodeField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -28779,9 +28779,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -28790,9 +28790,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaxAmount() As TotalTaxAmountType Get Return Me.totalTaxAmountField @@ -28801,9 +28801,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalTaxAmountField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -28812,9 +28812,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -28823,9 +28823,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property MinimumBackorderQuantity() As MinimumBackorderQuantityType Get Return Me.minimumBackorderQuantityField @@ -28834,9 +28834,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumBackorderQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumBackorderQuantity() As MaximumBackorderQuantityType Get Return Me.maximumBackorderQuantityField @@ -28845,9 +28845,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumBackorderQuantityField = value End Set End Property - + ''' - _ + Public Property InspectionMethodCode() As InspectionMethodCodeType Get Return Me.inspectionMethodCodeField @@ -28856,9 +28856,9 @@ Namespace Peppol.BISBilling30CreditNote Me.inspectionMethodCodeField = value End Set End Property - + ''' - _ + Public Property PartialDeliveryIndicator() As PartialDeliveryIndicatorType Get Return Me.partialDeliveryIndicatorField @@ -28867,9 +28867,9 @@ Namespace Peppol.BISBilling30CreditNote Me.partialDeliveryIndicatorField = value End Set End Property - + ''' - _ + Public Property BackOrderAllowedIndicator() As BackOrderAllowedIndicatorType Get Return Me.backOrderAllowedIndicatorField @@ -28878,9 +28878,9 @@ Namespace Peppol.BISBilling30CreditNote Me.backOrderAllowedIndicatorField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -28889,9 +28889,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -28900,9 +28900,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property WarrantyInformation() As WarrantyInformationType() Get Return Me.warrantyInformationField @@ -28911,9 +28911,9 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyInformationField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -28922,7 +28922,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' Public Property DeliveryTerms() As DeliveryTermsType Get @@ -28932,7 +28932,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' Public Property OriginatorParty() As PartyType Get @@ -28942,9 +28942,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originatorPartyField = value End Set End Property - + ''' - _ + Public Property OrderedShipment() As OrderedShipmentType() Get Return Me.orderedShipmentField @@ -28953,7 +28953,7 @@ Namespace Peppol.BISBilling30CreditNote Me.orderedShipmentField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -28963,9 +28963,9 @@ Namespace Peppol.BISBilling30CreditNote Me.pricingReferenceField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -28974,7 +28974,7 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -28984,7 +28984,7 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -28994,9 +28994,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property SubLineItem() As LineItemType() Get Return Me.subLineItemField @@ -29005,7 +29005,7 @@ Namespace Peppol.BISBilling30CreditNote Me.subLineItemField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -29015,7 +29015,7 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyValidityPeriodField = value End Set End Property - + ''' Public Property WarrantyParty() As PartyType Get @@ -29025,9 +29025,9 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyPartyField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -29036,7 +29036,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' Public Property ItemPriceExtension() As PriceExtensionType Get @@ -29046,9 +29046,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemPriceExtensionField = value End Set End Property - + ''' - _ + Public Property LineReference() As LineReferenceType() Get Return Me.lineReferenceField @@ -29058,20 +29058,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class OrderedShipmentType - + Private shipmentField As ShipmentType - + Private packageField() As PackageType - + ''' Public Property Shipment() As ShipmentType Get @@ -29081,9 +29081,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentField = value End Set End Property - + ''' - _ + Public Property Package() As PackageType() Get Return Me.packageField @@ -29093,36 +29093,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MonetaryTotalType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxExclusiveAmountField As TaxExclusiveAmountType - + Private taxInclusiveAmountField As TaxInclusiveAmountType - + Private allowanceTotalAmountField As AllowanceTotalAmountType - + Private chargeTotalAmountField As ChargeTotalAmountType - + Private prepaidAmountField As PrepaidAmountType - + Private payableRoundingAmountField As PayableRoundingAmountType - + Private payableAmountField As PayableAmountType - + Private payableAlternativeAmountField As PayableAlternativeAmountType - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -29131,9 +29131,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxExclusiveAmount() As TaxExclusiveAmountType Get Return Me.taxExclusiveAmountField @@ -29142,9 +29142,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxExclusiveAmountField = value End Set End Property - + ''' - _ + Public Property TaxInclusiveAmount() As TaxInclusiveAmountType Get Return Me.taxInclusiveAmountField @@ -29153,9 +29153,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxInclusiveAmountField = value End Set End Property - + ''' - _ + Public Property AllowanceTotalAmount() As AllowanceTotalAmountType Get Return Me.allowanceTotalAmountField @@ -29164,9 +29164,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceTotalAmountField = value End Set End Property - + ''' - _ + Public Property ChargeTotalAmount() As ChargeTotalAmountType Get Return Me.chargeTotalAmountField @@ -29175,9 +29175,9 @@ Namespace Peppol.BISBilling30CreditNote Me.chargeTotalAmountField = value End Set End Property - + ''' - _ + Public Property PrepaidAmount() As PrepaidAmountType Get Return Me.prepaidAmountField @@ -29186,9 +29186,9 @@ Namespace Peppol.BISBilling30CreditNote Me.prepaidAmountField = value End Set End Property - + ''' - _ + Public Property PayableRoundingAmount() As PayableRoundingAmountType Get Return Me.payableRoundingAmountField @@ -29197,9 +29197,9 @@ Namespace Peppol.BISBilling30CreditNote Me.payableRoundingAmountField = value End Set End Property - + ''' - _ + Public Property PayableAmount() As PayableAmountType Get Return Me.payableAmountField @@ -29208,9 +29208,9 @@ Namespace Peppol.BISBilling30CreditNote Me.payableAmountField = value End Set End Property - + ''' - _ + Public Property PayableAlternativeAmount() As PayableAlternativeAmountType Get Return Me.payableAlternativeAmountField @@ -29220,28 +29220,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AppealTermsType - + Private descriptionField() As DescriptionType - + Private presentationPeriodField As PeriodType - + Private appealInformationPartyField As PartyType - + Private appealReceiverPartyField As PartyType - + Private mediationPartyField As PartyType - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -29250,7 +29250,7 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' Public Property PresentationPeriod() As PeriodType Get @@ -29260,7 +29260,7 @@ Namespace Peppol.BISBilling30CreditNote Me.presentationPeriodField = value End Set End Property - + ''' Public Property AppealInformationParty() As PartyType Get @@ -29270,7 +29270,7 @@ Namespace Peppol.BISBilling30CreditNote Me.appealInformationPartyField = value End Set End Property - + ''' Public Property AppealReceiverParty() As PartyType Get @@ -29280,7 +29280,7 @@ Namespace Peppol.BISBilling30CreditNote Me.appealReceiverPartyField = value End Set End Property - + ''' Public Property MediationParty() As PartyType Get @@ -29291,24 +29291,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RegulationType - + Private nameField As NameType1 - + Private legalReferenceField As LegalReferenceType - + Private ontologyURIField As OntologyURIType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -29317,9 +29317,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property LegalReference() As LegalReferenceType Get Return Me.legalReferenceField @@ -29328,9 +29328,9 @@ Namespace Peppol.BISBilling30CreditNote Me.legalReferenceField = value End Set End Property - + ''' - _ + Public Property OntologyURI() As OntologyURIType Get Return Me.ontologyURIField @@ -29340,32 +29340,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AuctionTermsType - + Private auctionConstraintIndicatorField As AuctionConstraintIndicatorType - + Private justificationDescriptionField() As JustificationDescriptionType - + Private descriptionField() As DescriptionType - + Private processDescriptionField() As ProcessDescriptionType - + Private conditionsDescriptionField() As ConditionsDescriptionType - + Private electronicDeviceDescriptionField() As ElectronicDeviceDescriptionType - + Private auctionURIField As AuctionURIType - + ''' - _ + Public Property AuctionConstraintIndicator() As AuctionConstraintIndicatorType Get Return Me.auctionConstraintIndicatorField @@ -29374,9 +29374,9 @@ Namespace Peppol.BISBilling30CreditNote Me.auctionConstraintIndicatorField = value End Set End Property - + ''' - _ + Public Property JustificationDescription() As JustificationDescriptionType() Get Return Me.justificationDescriptionField @@ -29385,9 +29385,9 @@ Namespace Peppol.BISBilling30CreditNote Me.justificationDescriptionField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -29396,9 +29396,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ProcessDescription() As ProcessDescriptionType() Get Return Me.processDescriptionField @@ -29407,9 +29407,9 @@ Namespace Peppol.BISBilling30CreditNote Me.processDescriptionField = value End Set End Property - + ''' - _ + Public Property ConditionsDescription() As ConditionsDescriptionType() Get Return Me.conditionsDescriptionField @@ -29418,9 +29418,9 @@ Namespace Peppol.BISBilling30CreditNote Me.conditionsDescriptionField = value End Set End Property - + ''' - _ + Public Property ElectronicDeviceDescription() As ElectronicDeviceDescriptionType() Get Return Me.electronicDeviceDescriptionField @@ -29429,9 +29429,9 @@ Namespace Peppol.BISBilling30CreditNote Me.electronicDeviceDescriptionField = value End Set End Property - + ''' - _ + Public Property AuctionURI() As AuctionURIType Get Return Me.auctionURIField @@ -29441,40 +29441,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderedProjectType - + Private variantIDField As VariantIDType - + Private feeAmountField As FeeAmountType - + Private feeDescriptionField() As FeeDescriptionType - + Private tenderEnvelopeIDField As TenderEnvelopeIDType - + Private tenderEnvelopeTypeCodeField As TenderEnvelopeTypeCodeType - + Private procurementProjectLotField As ProcurementProjectLotType - + Private evidenceDocumentReferenceField() As DocumentReferenceType - + Private taxTotalField() As TaxTotalType - + Private legalMonetaryTotalField As MonetaryTotalType - + Private tenderLineField() As TenderLineType - + Private awardingCriterionResponseField() As AwardingCriterionResponseType - + ''' - _ + Public Property VariantID() As VariantIDType Get Return Me.variantIDField @@ -29483,9 +29483,9 @@ Namespace Peppol.BISBilling30CreditNote Me.variantIDField = value End Set End Property - + ''' - _ + Public Property FeeAmount() As FeeAmountType Get Return Me.feeAmountField @@ -29494,9 +29494,9 @@ Namespace Peppol.BISBilling30CreditNote Me.feeAmountField = value End Set End Property - + ''' - _ + Public Property FeeDescription() As FeeDescriptionType() Get Return Me.feeDescriptionField @@ -29505,9 +29505,9 @@ Namespace Peppol.BISBilling30CreditNote Me.feeDescriptionField = value End Set End Property - + ''' - _ + Public Property TenderEnvelopeID() As TenderEnvelopeIDType Get Return Me.tenderEnvelopeIDField @@ -29516,9 +29516,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderEnvelopeIDField = value End Set End Property - + ''' - _ + Public Property TenderEnvelopeTypeCode() As TenderEnvelopeTypeCodeType Get Return Me.tenderEnvelopeTypeCodeField @@ -29527,7 +29527,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderEnvelopeTypeCodeField = value End Set End Property - + ''' Public Property ProcurementProjectLot() As ProcurementProjectLotType Get @@ -29537,9 +29537,9 @@ Namespace Peppol.BISBilling30CreditNote Me.procurementProjectLotField = value End Set End Property - + ''' - _ + Public Property EvidenceDocumentReference() As DocumentReferenceType() Get Return Me.evidenceDocumentReferenceField @@ -29548,9 +29548,9 @@ Namespace Peppol.BISBilling30CreditNote Me.evidenceDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -29559,7 +29559,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' Public Property LegalMonetaryTotal() As MonetaryTotalType Get @@ -29569,9 +29569,9 @@ Namespace Peppol.BISBilling30CreditNote Me.legalMonetaryTotalField = value End Set End Property - + ''' - _ + Public Property TenderLine() As TenderLineType() Get Return Me.tenderLineField @@ -29580,9 +29580,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderLineField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionResponse() As AwardingCriterionResponseType() Get Return Me.awardingCriterionResponseField @@ -29592,24 +29592,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ProcurementProjectLotType - + Private idField As IDType - + Private tenderingTermsField As TenderingTermsType - + Private procurementProjectField As ProcurementProjectType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -29618,7 +29618,7 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' Public Property TenderingTerms() As TenderingTermsType Get @@ -29628,7 +29628,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderingTermsField = value End Set End Property - + ''' Public Property ProcurementProject() As ProcurementProjectType Get @@ -29639,104 +29639,104 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderingTermsType - + Private awardingMethodTypeCodeField As AwardingMethodTypeCodeType - + Private priceEvaluationCodeField As PriceEvaluationCodeType - + Private maximumVariantQuantityField As MaximumVariantQuantityType - + Private variantConstraintIndicatorField As VariantConstraintIndicatorType - + Private acceptedVariantsDescriptionField() As AcceptedVariantsDescriptionType - + Private priceRevisionFormulaDescriptionField() As PriceRevisionFormulaDescriptionType - + Private fundingProgramCodeField As FundingProgramCodeType - + Private fundingProgramField() As FundingProgramType - + Private maximumAdvertisementAmountField As MaximumAdvertisementAmountType - + Private noteField() As NoteType - + Private paymentFrequencyCodeField As PaymentFrequencyCodeType - + Private economicOperatorRegistryURIField As EconomicOperatorRegistryURIType - + Private requiredCurriculaIndicatorField As RequiredCurriculaIndicatorType - + Private otherConditionsIndicatorField As OtherConditionsIndicatorType - + Private additionalConditionsField() As AdditionalConditionsType - + Private latestSecurityClearanceDateField As LatestSecurityClearanceDateType - + Private documentationFeeAmountField As DocumentationFeeAmountType - + Private penaltyClauseField() As ClauseType - + Private requiredFinancialGuaranteeField() As FinancialGuaranteeType - + Private procurementLegislationDocumentReferenceField As DocumentReferenceType - + Private fiscalLegislationDocumentReferenceField As DocumentReferenceType - + Private environmentalLegislationDocumentReferenceField As DocumentReferenceType - + Private employmentLegislationDocumentReferenceField As DocumentReferenceType - + Private contractualDocumentReferenceField() As DocumentReferenceType - + Private callForTendersDocumentReferenceField As DocumentReferenceType - + Private warrantyValidityPeriodField As PeriodType - + Private paymentTermsField() As PaymentTermsType - + Private tendererQualificationRequestField() As TendererQualificationRequestType - + Private allowedSubcontractTermsField() As SubcontractTermsType - + Private tenderPreparationField() As TenderPreparationType - + Private contractExecutionRequirementField() As ContractExecutionRequirementType - + Private awardingTermsField As AwardingTermsType - + Private additionalInformationPartyField As PartyType - + Private documentProviderPartyField As PartyType - + Private tenderRecipientPartyField As PartyType - + Private contractResponsiblePartyField As PartyType - + Private tenderEvaluationPartyField() As PartyType - + Private tenderValidityPeriodField As PeriodType - + Private contractAcceptancePeriodField As PeriodType - + Private appealTermsField As AppealTermsType - + Private languageField() As LanguageType - + Private budgetAccountLineField() As BudgetAccountLineType - + Private replacedNoticeDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property AwardingMethodTypeCode() As AwardingMethodTypeCodeType Get Return Me.awardingMethodTypeCodeField @@ -29745,9 +29745,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardingMethodTypeCodeField = value End Set End Property - + ''' - _ + Public Property PriceEvaluationCode() As PriceEvaluationCodeType Get Return Me.priceEvaluationCodeField @@ -29756,9 +29756,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceEvaluationCodeField = value End Set End Property - + ''' - _ + Public Property MaximumVariantQuantity() As MaximumVariantQuantityType Get Return Me.maximumVariantQuantityField @@ -29767,9 +29767,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumVariantQuantityField = value End Set End Property - + ''' - _ + Public Property VariantConstraintIndicator() As VariantConstraintIndicatorType Get Return Me.variantConstraintIndicatorField @@ -29778,9 +29778,9 @@ Namespace Peppol.BISBilling30CreditNote Me.variantConstraintIndicatorField = value End Set End Property - + ''' - _ + Public Property AcceptedVariantsDescription() As AcceptedVariantsDescriptionType() Get Return Me.acceptedVariantsDescriptionField @@ -29789,9 +29789,9 @@ Namespace Peppol.BISBilling30CreditNote Me.acceptedVariantsDescriptionField = value End Set End Property - + ''' - _ + Public Property PriceRevisionFormulaDescription() As PriceRevisionFormulaDescriptionType() Get Return Me.priceRevisionFormulaDescriptionField @@ -29800,9 +29800,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceRevisionFormulaDescriptionField = value End Set End Property - + ''' - _ + Public Property FundingProgramCode() As FundingProgramCodeType Get Return Me.fundingProgramCodeField @@ -29811,9 +29811,9 @@ Namespace Peppol.BISBilling30CreditNote Me.fundingProgramCodeField = value End Set End Property - + ''' - _ + Public Property FundingProgram() As FundingProgramType() Get Return Me.fundingProgramField @@ -29822,9 +29822,9 @@ Namespace Peppol.BISBilling30CreditNote Me.fundingProgramField = value End Set End Property - + ''' - _ + Public Property MaximumAdvertisementAmount() As MaximumAdvertisementAmountType Get Return Me.maximumAdvertisementAmountField @@ -29833,9 +29833,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumAdvertisementAmountField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -29844,9 +29844,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property PaymentFrequencyCode() As PaymentFrequencyCodeType Get Return Me.paymentFrequencyCodeField @@ -29855,9 +29855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentFrequencyCodeField = value End Set End Property - + ''' - _ + Public Property EconomicOperatorRegistryURI() As EconomicOperatorRegistryURIType Get Return Me.economicOperatorRegistryURIField @@ -29866,9 +29866,9 @@ Namespace Peppol.BISBilling30CreditNote Me.economicOperatorRegistryURIField = value End Set End Property - + ''' - _ + Public Property RequiredCurriculaIndicator() As RequiredCurriculaIndicatorType Get Return Me.requiredCurriculaIndicatorField @@ -29877,9 +29877,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredCurriculaIndicatorField = value End Set End Property - + ''' - _ + Public Property OtherConditionsIndicator() As OtherConditionsIndicatorType Get Return Me.otherConditionsIndicatorField @@ -29888,9 +29888,9 @@ Namespace Peppol.BISBilling30CreditNote Me.otherConditionsIndicatorField = value End Set End Property - + ''' - _ + Public Property AdditionalConditions() As AdditionalConditionsType() Get Return Me.additionalConditionsField @@ -29899,9 +29899,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalConditionsField = value End Set End Property - + ''' - _ + Public Property LatestSecurityClearanceDate() As LatestSecurityClearanceDateType Get Return Me.latestSecurityClearanceDateField @@ -29910,9 +29910,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestSecurityClearanceDateField = value End Set End Property - + ''' - _ + Public Property DocumentationFeeAmount() As DocumentationFeeAmountType Get Return Me.documentationFeeAmountField @@ -29921,9 +29921,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentationFeeAmountField = value End Set End Property - + ''' - _ + Public Property PenaltyClause() As ClauseType() Get Return Me.penaltyClauseField @@ -29932,9 +29932,9 @@ Namespace Peppol.BISBilling30CreditNote Me.penaltyClauseField = value End Set End Property - + ''' - _ + Public Property RequiredFinancialGuarantee() As FinancialGuaranteeType() Get Return Me.requiredFinancialGuaranteeField @@ -29943,7 +29943,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredFinancialGuaranteeField = value End Set End Property - + ''' Public Property ProcurementLegislationDocumentReference() As DocumentReferenceType Get @@ -29953,7 +29953,7 @@ Namespace Peppol.BISBilling30CreditNote Me.procurementLegislationDocumentReferenceField = value End Set End Property - + ''' Public Property FiscalLegislationDocumentReference() As DocumentReferenceType Get @@ -29963,7 +29963,7 @@ Namespace Peppol.BISBilling30CreditNote Me.fiscalLegislationDocumentReferenceField = value End Set End Property - + ''' Public Property EnvironmentalLegislationDocumentReference() As DocumentReferenceType Get @@ -29973,7 +29973,7 @@ Namespace Peppol.BISBilling30CreditNote Me.environmentalLegislationDocumentReferenceField = value End Set End Property - + ''' Public Property EmploymentLegislationDocumentReference() As DocumentReferenceType Get @@ -29983,9 +29983,9 @@ Namespace Peppol.BISBilling30CreditNote Me.employmentLegislationDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ContractualDocumentReference() As DocumentReferenceType() Get Return Me.contractualDocumentReferenceField @@ -29994,7 +29994,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractualDocumentReferenceField = value End Set End Property - + ''' Public Property CallForTendersDocumentReference() As DocumentReferenceType Get @@ -30004,7 +30004,7 @@ Namespace Peppol.BISBilling30CreditNote Me.callForTendersDocumentReferenceField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -30014,9 +30014,9 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyValidityPeriodField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -30025,9 +30025,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property TendererQualificationRequest() As TendererQualificationRequestType() Get Return Me.tendererQualificationRequestField @@ -30036,9 +30036,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tendererQualificationRequestField = value End Set End Property - + ''' - _ + Public Property AllowedSubcontractTerms() As SubcontractTermsType() Get Return Me.allowedSubcontractTermsField @@ -30047,9 +30047,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowedSubcontractTermsField = value End Set End Property - + ''' - _ + Public Property TenderPreparation() As TenderPreparationType() Get Return Me.tenderPreparationField @@ -30058,9 +30058,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderPreparationField = value End Set End Property - + ''' - _ + Public Property ContractExecutionRequirement() As ContractExecutionRequirementType() Get Return Me.contractExecutionRequirementField @@ -30069,7 +30069,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractExecutionRequirementField = value End Set End Property - + ''' Public Property AwardingTerms() As AwardingTermsType Get @@ -30079,7 +30079,7 @@ Namespace Peppol.BISBilling30CreditNote Me.awardingTermsField = value End Set End Property - + ''' Public Property AdditionalInformationParty() As PartyType Get @@ -30089,7 +30089,7 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalInformationPartyField = value End Set End Property - + ''' Public Property DocumentProviderParty() As PartyType Get @@ -30099,7 +30099,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentProviderPartyField = value End Set End Property - + ''' Public Property TenderRecipientParty() As PartyType Get @@ -30109,7 +30109,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderRecipientPartyField = value End Set End Property - + ''' Public Property ContractResponsibleParty() As PartyType Get @@ -30119,9 +30119,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractResponsiblePartyField = value End Set End Property - + ''' - _ + Public Property TenderEvaluationParty() As PartyType() Get Return Me.tenderEvaluationPartyField @@ -30130,7 +30130,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderEvaluationPartyField = value End Set End Property - + ''' Public Property TenderValidityPeriod() As PeriodType Get @@ -30140,7 +30140,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderValidityPeriodField = value End Set End Property - + ''' Public Property ContractAcceptancePeriod() As PeriodType Get @@ -30150,7 +30150,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractAcceptancePeriodField = value End Set End Property - + ''' Public Property AppealTerms() As AppealTermsType Get @@ -30160,9 +30160,9 @@ Namespace Peppol.BISBilling30CreditNote Me.appealTermsField = value End Set End Property - + ''' - _ + Public Property Language() As LanguageType() Get Return Me.languageField @@ -30171,9 +30171,9 @@ Namespace Peppol.BISBilling30CreditNote Me.languageField = value End Set End Property - + ''' - _ + Public Property BudgetAccountLine() As BudgetAccountLineType() Get Return Me.budgetAccountLineField @@ -30182,7 +30182,7 @@ Namespace Peppol.BISBilling30CreditNote Me.budgetAccountLineField = value End Set End Property - + ''' Public Property ReplacedNoticeDocumentReference() As DocumentReferenceType Get @@ -30193,28 +30193,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class FinancialGuaranteeType - + Private guaranteeTypeCodeField As GuaranteeTypeCodeType - + Private descriptionField() As DescriptionType - + Private liabilityAmountField As LiabilityAmountType - + Private amountRateField As AmountRateType - + Private constitutionPeriodField As PeriodType - + ''' - _ + Public Property GuaranteeTypeCode() As GuaranteeTypeCodeType Get Return Me.guaranteeTypeCodeField @@ -30223,9 +30223,9 @@ Namespace Peppol.BISBilling30CreditNote Me.guaranteeTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30234,9 +30234,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property LiabilityAmount() As LiabilityAmountType Get Return Me.liabilityAmountField @@ -30245,9 +30245,9 @@ Namespace Peppol.BISBilling30CreditNote Me.liabilityAmountField = value End Set End Property - + ''' - _ + Public Property AmountRate() As AmountRateType Get Return Me.amountRateField @@ -30256,7 +30256,7 @@ Namespace Peppol.BISBilling30CreditNote Me.amountRateField = value End Set End Property - + ''' Public Property ConstitutionPeriod() As PeriodType Get @@ -30267,40 +30267,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TendererQualificationRequestType - + Private companyLegalFormCodeField As CompanyLegalFormCodeType - + Private companyLegalFormField As CompanyLegalFormType - + Private personalSituationField() As PersonalSituationType - + Private operatingYearsQuantityField As OperatingYearsQuantityType - + Private employeeQuantityField As EmployeeQuantityType - + Private descriptionField() As DescriptionType - + Private requiredBusinessClassificationSchemeField() As ClassificationSchemeType - + Private technicalEvaluationCriterionField() As EvaluationCriterionType - + Private financialEvaluationCriterionField() As EvaluationCriterionType - + Private specificTendererRequirementField() As TendererRequirementType - + Private economicOperatorRoleField() As EconomicOperatorRoleType - + ''' - _ + Public Property CompanyLegalFormCode() As CompanyLegalFormCodeType Get Return Me.companyLegalFormCodeField @@ -30309,9 +30309,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyLegalFormCodeField = value End Set End Property - + ''' - _ + Public Property CompanyLegalForm() As CompanyLegalFormType Get Return Me.companyLegalFormField @@ -30320,9 +30320,9 @@ Namespace Peppol.BISBilling30CreditNote Me.companyLegalFormField = value End Set End Property - + ''' - _ + Public Property PersonalSituation() As PersonalSituationType() Get Return Me.personalSituationField @@ -30331,9 +30331,9 @@ Namespace Peppol.BISBilling30CreditNote Me.personalSituationField = value End Set End Property - + ''' - _ + Public Property OperatingYearsQuantity() As OperatingYearsQuantityType Get Return Me.operatingYearsQuantityField @@ -30342,9 +30342,9 @@ Namespace Peppol.BISBilling30CreditNote Me.operatingYearsQuantityField = value End Set End Property - + ''' - _ + Public Property EmployeeQuantity() As EmployeeQuantityType Get Return Me.employeeQuantityField @@ -30353,9 +30353,9 @@ Namespace Peppol.BISBilling30CreditNote Me.employeeQuantityField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30364,9 +30364,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property RequiredBusinessClassificationScheme() As ClassificationSchemeType() Get Return Me.requiredBusinessClassificationSchemeField @@ -30375,9 +30375,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredBusinessClassificationSchemeField = value End Set End Property - + ''' - _ + Public Property TechnicalEvaluationCriterion() As EvaluationCriterionType() Get Return Me.technicalEvaluationCriterionField @@ -30386,9 +30386,9 @@ Namespace Peppol.BISBilling30CreditNote Me.technicalEvaluationCriterionField = value End Set End Property - + ''' - _ + Public Property FinancialEvaluationCriterion() As EvaluationCriterionType() Get Return Me.financialEvaluationCriterionField @@ -30397,9 +30397,9 @@ Namespace Peppol.BISBilling30CreditNote Me.financialEvaluationCriterionField = value End Set End Property - + ''' - _ + Public Property SpecificTendererRequirement() As TendererRequirementType() Get Return Me.specificTendererRequirementField @@ -30408,9 +30408,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specificTendererRequirementField = value End Set End Property - + ''' - _ + Public Property EconomicOperatorRole() As EconomicOperatorRoleType() Get Return Me.economicOperatorRoleField @@ -30420,34 +30420,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EvaluationCriterionType - + Private evaluationCriterionTypeCodeField As EvaluationCriterionTypeCodeType - + Private descriptionField() As DescriptionType - + Private thresholdAmountField As ThresholdAmountType - + Private thresholdQuantityField As ThresholdQuantityType - + Private expressionCodeField As ExpressionCodeType - + Private expressionField() As ExpressionType - + Private durationPeriodField As PeriodType - + Private suggestedEvidenceField() As EvidenceType - + ''' - _ + Public Property EvaluationCriterionTypeCode() As EvaluationCriterionTypeCodeType Get Return Me.evaluationCriterionTypeCodeField @@ -30456,9 +30456,9 @@ Namespace Peppol.BISBilling30CreditNote Me.evaluationCriterionTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30467,9 +30467,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ThresholdAmount() As ThresholdAmountType Get Return Me.thresholdAmountField @@ -30478,9 +30478,9 @@ Namespace Peppol.BISBilling30CreditNote Me.thresholdAmountField = value End Set End Property - + ''' - _ + Public Property ThresholdQuantity() As ThresholdQuantityType Get Return Me.thresholdQuantityField @@ -30489,9 +30489,9 @@ Namespace Peppol.BISBilling30CreditNote Me.thresholdQuantityField = value End Set End Property - + ''' - _ + Public Property ExpressionCode() As ExpressionCodeType Get Return Me.expressionCodeField @@ -30500,9 +30500,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expressionCodeField = value End Set End Property - + ''' - _ + Public Property Expression() As ExpressionType() Get Return Me.expressionField @@ -30511,7 +30511,7 @@ Namespace Peppol.BISBilling30CreditNote Me.expressionField = value End Set End Property - + ''' Public Property DurationPeriod() As PeriodType Get @@ -30521,9 +30521,9 @@ Namespace Peppol.BISBilling30CreditNote Me.durationPeriodField = value End Set End Property - + ''' - _ + Public Property SuggestedEvidence() As EvidenceType() Get Return Me.suggestedEvidenceField @@ -30533,32 +30533,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EvidenceType - + Private idField As IDType - + Private evidenceTypeCodeField As EvidenceTypeCodeType - + Private descriptionField() As DescriptionType - + Private candidateStatementField() As CandidateStatementType - + Private evidenceIssuingPartyField As PartyType - + Private documentReferenceField As DocumentReferenceType - + Private languageField As LanguageType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -30567,9 +30567,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property EvidenceTypeCode() As EvidenceTypeCodeType Get Return Me.evidenceTypeCodeField @@ -30578,9 +30578,9 @@ Namespace Peppol.BISBilling30CreditNote Me.evidenceTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30589,9 +30589,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CandidateStatement() As CandidateStatementType() Get Return Me.candidateStatementField @@ -30600,7 +30600,7 @@ Namespace Peppol.BISBilling30CreditNote Me.candidateStatementField = value End Set End Property - + ''' Public Property EvidenceIssuingParty() As PartyType Get @@ -30610,7 +30610,7 @@ Namespace Peppol.BISBilling30CreditNote Me.evidenceIssuingPartyField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -30620,7 +30620,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property Language() As LanguageType Get @@ -30631,28 +30631,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TendererRequirementType - + Private nameField() As NameType1 - + Private tendererRequirementTypeCodeField As TendererRequirementTypeCodeType - + Private descriptionField() As DescriptionType - + Private legalReferenceField As LegalReferenceType - + Private suggestedEvidenceField() As EvidenceType - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -30661,9 +30661,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property TendererRequirementTypeCode() As TendererRequirementTypeCodeType Get Return Me.tendererRequirementTypeCodeField @@ -30672,9 +30672,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tendererRequirementTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30683,9 +30683,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property LegalReference() As LegalReferenceType Get Return Me.legalReferenceField @@ -30694,9 +30694,9 @@ Namespace Peppol.BISBilling30CreditNote Me.legalReferenceField = value End Set End Property - + ''' - _ + Public Property SuggestedEvidence() As EvidenceType() Get Return Me.suggestedEvidenceField @@ -30706,30 +30706,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderPreparationType - + Private tenderEnvelopeIDField As TenderEnvelopeIDType - + Private tenderEnvelopeTypeCodeField As TenderEnvelopeTypeCodeType - + Private descriptionField() As DescriptionType - + Private openTenderIDField As OpenTenderIDType - + Private procurementProjectLotField() As ProcurementProjectLotType - + Private documentTenderRequirementField() As TenderRequirementType - + ''' - _ + Public Property TenderEnvelopeID() As TenderEnvelopeIDType Get Return Me.tenderEnvelopeIDField @@ -30738,9 +30738,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderEnvelopeIDField = value End Set End Property - + ''' - _ + Public Property TenderEnvelopeTypeCode() As TenderEnvelopeTypeCodeType Get Return Me.tenderEnvelopeTypeCodeField @@ -30749,9 +30749,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderEnvelopeTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30760,9 +30760,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property OpenTenderID() As OpenTenderIDType Get Return Me.openTenderIDField @@ -30771,9 +30771,9 @@ Namespace Peppol.BISBilling30CreditNote Me.openTenderIDField = value End Set End Property - + ''' - _ + Public Property ProcurementProjectLot() As ProcurementProjectLotType() Get Return Me.procurementProjectLotField @@ -30782,9 +30782,9 @@ Namespace Peppol.BISBilling30CreditNote Me.procurementProjectLotField = value End Set End Property - + ''' - _ + Public Property DocumentTenderRequirement() As TenderRequirementType() Get Return Me.documentTenderRequirementField @@ -30794,24 +30794,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderRequirementType - + Private nameField As NameType1 - + Private descriptionField() As DescriptionType - + Private templateDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -30820,9 +30820,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30831,7 +30831,7 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' Public Property TemplateDocumentReference() As DocumentReferenceType Get @@ -30842,24 +30842,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContractExecutionRequirementType - + Private nameField() As NameType1 - + Private executionRequirementCodeField As ExecutionRequirementCodeType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -30868,9 +30868,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property ExecutionRequirementCode() As ExecutionRequirementCodeType Get Return Me.executionRequirementCodeField @@ -30879,9 +30879,9 @@ Namespace Peppol.BISBilling30CreditNote Me.executionRequirementCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30891,40 +30891,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AwardingTermsType - + Private weightingAlgorithmCodeField As WeightingAlgorithmCodeType - + Private descriptionField() As DescriptionType - + Private technicalCommitteeDescriptionField() As TechnicalCommitteeDescriptionType - + Private lowTendersDescriptionField() As LowTendersDescriptionType - + Private prizeIndicatorField As PrizeIndicatorType - + Private prizeDescriptionField() As PrizeDescriptionType - + Private paymentDescriptionField() As PaymentDescriptionType - + Private followupContractIndicatorField As FollowupContractIndicatorType - + Private bindingOnBuyerIndicatorField As BindingOnBuyerIndicatorType - + Private awardingCriterionField() As AwardingCriterionType - + Private technicalCommitteePersonField() As PersonType - + ''' - _ + Public Property WeightingAlgorithmCode() As WeightingAlgorithmCodeType Get Return Me.weightingAlgorithmCodeField @@ -30933,9 +30933,9 @@ Namespace Peppol.BISBilling30CreditNote Me.weightingAlgorithmCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30944,9 +30944,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property TechnicalCommitteeDescription() As TechnicalCommitteeDescriptionType() Get Return Me.technicalCommitteeDescriptionField @@ -30955,9 +30955,9 @@ Namespace Peppol.BISBilling30CreditNote Me.technicalCommitteeDescriptionField = value End Set End Property - + ''' - _ + Public Property LowTendersDescription() As LowTendersDescriptionType() Get Return Me.lowTendersDescriptionField @@ -30966,9 +30966,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lowTendersDescriptionField = value End Set End Property - + ''' - _ + Public Property PrizeIndicator() As PrizeIndicatorType Get Return Me.prizeIndicatorField @@ -30977,9 +30977,9 @@ Namespace Peppol.BISBilling30CreditNote Me.prizeIndicatorField = value End Set End Property - + ''' - _ + Public Property PrizeDescription() As PrizeDescriptionType() Get Return Me.prizeDescriptionField @@ -30988,9 +30988,9 @@ Namespace Peppol.BISBilling30CreditNote Me.prizeDescriptionField = value End Set End Property - + ''' - _ + Public Property PaymentDescription() As PaymentDescriptionType() Get Return Me.paymentDescriptionField @@ -30999,9 +30999,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentDescriptionField = value End Set End Property - + ''' - _ + Public Property FollowupContractIndicator() As FollowupContractIndicatorType Get Return Me.followupContractIndicatorField @@ -31010,9 +31010,9 @@ Namespace Peppol.BISBilling30CreditNote Me.followupContractIndicatorField = value End Set End Property - + ''' - _ + Public Property BindingOnBuyerIndicator() As BindingOnBuyerIndicatorType Get Return Me.bindingOnBuyerIndicatorField @@ -31021,9 +31021,9 @@ Namespace Peppol.BISBilling30CreditNote Me.bindingOnBuyerIndicatorField = value End Set End Property - + ''' - _ + Public Property AwardingCriterion() As AwardingCriterionType() Get Return Me.awardingCriterionField @@ -31032,9 +31032,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardingCriterionField = value End Set End Property - + ''' - _ + Public Property TechnicalCommitteePerson() As PersonType() Get Return Me.technicalCommitteePersonField @@ -31044,44 +31044,44 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AwardingCriterionType - + Private idField As IDType - + Private awardingCriterionTypeCodeField As AwardingCriterionTypeCodeType - + Private descriptionField() As DescriptionType - + Private weightNumericField As WeightNumericType - + Private weightField() As WeightType - + Private calculationExpressionField() As CalculationExpressionType - + Private calculationExpressionCodeField As CalculationExpressionCodeType - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private minimumAmountField As MinimumAmountType - + Private maximumAmountField As MaximumAmountType - + Private minimumImprovementBidField() As MinimumImprovementBidType - + Private subordinateAwardingCriterionField() As AwardingCriterionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31090,9 +31090,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionTypeCode() As AwardingCriterionTypeCodeType Get Return Me.awardingCriterionTypeCodeField @@ -31101,9 +31101,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardingCriterionTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -31112,9 +31112,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property WeightNumeric() As WeightNumericType Get Return Me.weightNumericField @@ -31123,9 +31123,9 @@ Namespace Peppol.BISBilling30CreditNote Me.weightNumericField = value End Set End Property - + ''' - _ + Public Property Weight() As WeightType() Get Return Me.weightField @@ -31134,9 +31134,9 @@ Namespace Peppol.BISBilling30CreditNote Me.weightField = value End Set End Property - + ''' - _ + Public Property CalculationExpression() As CalculationExpressionType() Get Return Me.calculationExpressionField @@ -31145,9 +31145,9 @@ Namespace Peppol.BISBilling30CreditNote Me.calculationExpressionField = value End Set End Property - + ''' - _ + Public Property CalculationExpressionCode() As CalculationExpressionCodeType Get Return Me.calculationExpressionCodeField @@ -31156,9 +31156,9 @@ Namespace Peppol.BISBilling30CreditNote Me.calculationExpressionCodeField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -31167,9 +31167,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -31178,9 +31178,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property MinimumAmount() As MinimumAmountType Get Return Me.minimumAmountField @@ -31189,9 +31189,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumAmountField = value End Set End Property - + ''' - _ + Public Property MaximumAmount() As MaximumAmountType Get Return Me.maximumAmountField @@ -31200,9 +31200,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumAmountField = value End Set End Property - + ''' - _ + Public Property MinimumImprovementBid() As MinimumImprovementBidType() Get Return Me.minimumImprovementBidField @@ -31211,9 +31211,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumImprovementBidField = value End Set End Property - + ''' - _ + Public Property SubordinateAwardingCriterion() As AwardingCriterionType() Get Return Me.subordinateAwardingCriterionField @@ -31223,24 +31223,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class BudgetAccountLineType - + Private idField As IDType - + Private totalAmountField As TotalAmountType - + Private budgetAccountField() As BudgetAccountType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31249,9 +31249,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property TotalAmount() As TotalAmountType Get Return Me.totalAmountField @@ -31260,9 +31260,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalAmountField = value End Set End Property - + ''' - _ + Public Property BudgetAccount() As BudgetAccountType() Get Return Me.budgetAccountField @@ -31272,24 +31272,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class BudgetAccountType - + Private idField As IDType - + Private budgetYearNumericField As BudgetYearNumericType - + Private requiredClassificationSchemeField As ClassificationSchemeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31298,9 +31298,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property BudgetYearNumeric() As BudgetYearNumericType Get Return Me.budgetYearNumericField @@ -31309,7 +31309,7 @@ Namespace Peppol.BISBilling30CreditNote Me.budgetYearNumericField = value End Set End Property - + ''' Public Property RequiredClassificationScheme() As ClassificationSchemeType Get @@ -31320,54 +31320,54 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ProcurementProjectType - + Private idField As IDType - + Private nameField() As NameType1 - + Private descriptionField() As DescriptionType - + Private procurementTypeCodeField As ProcurementTypeCodeType - + Private procurementSubTypeCodeField As ProcurementSubTypeCodeType - + Private qualityControlCodeField As QualityControlCodeType - + Private requiredFeeAmountField As RequiredFeeAmountType - + Private feeDescriptionField() As FeeDescriptionType - + Private requestedDeliveryDateField As RequestedDeliveryDateType - + Private estimatedOverallContractQuantityField As EstimatedOverallContractQuantityType - + Private noteField() As NoteType - + Private requestedTenderTotalField As RequestedTenderTotalType - + Private mainCommodityClassificationField As CommodityClassificationType - + Private additionalCommodityClassificationField() As CommodityClassificationType - + Private realizedLocationField() As LocationType1 - + Private plannedPeriodField As PeriodType - + Private contractExtensionField As ContractExtensionType - + Private requestForTenderLineField() As RequestForTenderLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31376,9 +31376,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -31387,9 +31387,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -31398,9 +31398,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ProcurementTypeCode() As ProcurementTypeCodeType Get Return Me.procurementTypeCodeField @@ -31409,9 +31409,9 @@ Namespace Peppol.BISBilling30CreditNote Me.procurementTypeCodeField = value End Set End Property - + ''' - _ + Public Property ProcurementSubTypeCode() As ProcurementSubTypeCodeType Get Return Me.procurementSubTypeCodeField @@ -31420,9 +31420,9 @@ Namespace Peppol.BISBilling30CreditNote Me.procurementSubTypeCodeField = value End Set End Property - + ''' - _ + Public Property QualityControlCode() As QualityControlCodeType Get Return Me.qualityControlCodeField @@ -31431,9 +31431,9 @@ Namespace Peppol.BISBilling30CreditNote Me.qualityControlCodeField = value End Set End Property - + ''' - _ + Public Property RequiredFeeAmount() As RequiredFeeAmountType Get Return Me.requiredFeeAmountField @@ -31442,9 +31442,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredFeeAmountField = value End Set End Property - + ''' - _ + Public Property FeeDescription() As FeeDescriptionType() Get Return Me.feeDescriptionField @@ -31453,9 +31453,9 @@ Namespace Peppol.BISBilling30CreditNote Me.feeDescriptionField = value End Set End Property - + ''' - _ + Public Property RequestedDeliveryDate() As RequestedDeliveryDateType Get Return Me.requestedDeliveryDateField @@ -31464,9 +31464,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedDeliveryDateField = value End Set End Property - + ''' - _ + Public Property EstimatedOverallContractQuantity() As EstimatedOverallContractQuantityType Get Return Me.estimatedOverallContractQuantityField @@ -31475,9 +31475,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedOverallContractQuantityField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -31486,7 +31486,7 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' Public Property RequestedTenderTotal() As RequestedTenderTotalType Get @@ -31496,7 +31496,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requestedTenderTotalField = value End Set End Property - + ''' Public Property MainCommodityClassification() As CommodityClassificationType Get @@ -31506,9 +31506,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mainCommodityClassificationField = value End Set End Property - + ''' - _ + Public Property AdditionalCommodityClassification() As CommodityClassificationType() Get Return Me.additionalCommodityClassificationField @@ -31517,9 +31517,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalCommodityClassificationField = value End Set End Property - + ''' - _ + Public Property RealizedLocation() As LocationType1() Get Return Me.realizedLocationField @@ -31528,7 +31528,7 @@ Namespace Peppol.BISBilling30CreditNote Me.realizedLocationField = value End Set End Property - + ''' Public Property PlannedPeriod() As PeriodType Get @@ -31538,7 +31538,7 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedPeriodField = value End Set End Property - + ''' Public Property ContractExtension() As ContractExtensionType Get @@ -31548,9 +31548,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractExtensionField = value End Set End Property - + ''' - _ + Public Property RequestForTenderLine() As RequestForTenderLineType() Get Return Me.requestForTenderLineField @@ -31560,34 +31560,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RequestedTenderTotalType - + Private estimatedOverallContractAmountField As EstimatedOverallContractAmountType - + Private totalAmountField As TotalAmountType - + Private taxIncludedIndicatorField As TaxIncludedIndicatorType - + Private minimumAmountField As MinimumAmountType - + Private maximumAmountField As MaximumAmountType - + Private monetaryScopeField() As MonetaryScopeType - + Private averageSubsequentContractAmountField As AverageSubsequentContractAmountType - + Private applicableTaxCategoryField() As TaxCategoryType - + ''' - _ + Public Property EstimatedOverallContractAmount() As EstimatedOverallContractAmountType Get Return Me.estimatedOverallContractAmountField @@ -31596,9 +31596,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedOverallContractAmountField = value End Set End Property - + ''' - _ + Public Property TotalAmount() As TotalAmountType Get Return Me.totalAmountField @@ -31607,9 +31607,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalAmountField = value End Set End Property - + ''' - _ + Public Property TaxIncludedIndicator() As TaxIncludedIndicatorType Get Return Me.taxIncludedIndicatorField @@ -31618,9 +31618,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxIncludedIndicatorField = value End Set End Property - + ''' - _ + Public Property MinimumAmount() As MinimumAmountType Get Return Me.minimumAmountField @@ -31629,9 +31629,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumAmountField = value End Set End Property - + ''' - _ + Public Property MaximumAmount() As MaximumAmountType Get Return Me.maximumAmountField @@ -31640,9 +31640,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumAmountField = value End Set End Property - + ''' - _ + Public Property MonetaryScope() As MonetaryScopeType() Get Return Me.monetaryScopeField @@ -31651,9 +31651,9 @@ Namespace Peppol.BISBilling30CreditNote Me.monetaryScopeField = value End Set End Property - + ''' - _ + Public Property AverageSubsequentContractAmount() As AverageSubsequentContractAmountType Get Return Me.averageSubsequentContractAmountField @@ -31662,9 +31662,9 @@ Namespace Peppol.BISBilling30CreditNote Me.averageSubsequentContractAmountField = value End Set End Property - + ''' - _ + Public Property ApplicableTaxCategory() As TaxCategoryType() Get Return Me.applicableTaxCategoryField @@ -31674,28 +31674,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContractExtensionType - + Private optionsDescriptionField() As OptionsDescriptionType - + Private minimumNumberNumericField As MinimumNumberNumericType - + Private maximumNumberNumericField As MaximumNumberNumericType - + Private optionValidityPeriodField As PeriodType - + Private renewalField() As RenewalType - + ''' - _ + Public Property OptionsDescription() As OptionsDescriptionType() Get Return Me.optionsDescriptionField @@ -31704,9 +31704,9 @@ Namespace Peppol.BISBilling30CreditNote Me.optionsDescriptionField = value End Set End Property - + ''' - _ + Public Property MinimumNumberNumeric() As MinimumNumberNumericType Get Return Me.minimumNumberNumericField @@ -31715,9 +31715,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumNumberNumericField = value End Set End Property - + ''' - _ + Public Property MaximumNumberNumeric() As MaximumNumberNumericType Get Return Me.maximumNumberNumericField @@ -31726,7 +31726,7 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumNumberNumericField = value End Set End Property - + ''' Public Property OptionValidityPeriod() As PeriodType Get @@ -31736,9 +31736,9 @@ Namespace Peppol.BISBilling30CreditNote Me.optionValidityPeriodField = value End Set End Property - + ''' - _ + Public Property Renewal() As RenewalType() Get Return Me.renewalField @@ -31748,22 +31748,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RenewalType - + Private amountField As AmountType2 - + Private periodField As PeriodType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -31772,7 +31772,7 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -31783,50 +31783,50 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RequestForTenderLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private taxIncludedIndicatorField As TaxIncludedIndicatorType - + Private minimumAmountField As MinimumAmountType - + Private maximumAmountField As MaximumAmountType - + Private estimatedAmountField As EstimatedAmountType - + Private documentReferenceField() As DocumentReferenceType - + Private deliveryPeriodField() As PeriodType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + Private warrantyValidityPeriodField As PeriodType - + Private itemField As ItemType - + Private subRequestForTenderLineField() As RequestForTenderLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31835,9 +31835,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -31846,9 +31846,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -31857,9 +31857,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -31868,9 +31868,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -31879,9 +31879,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -31890,9 +31890,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property TaxIncludedIndicator() As TaxIncludedIndicatorType Get Return Me.taxIncludedIndicatorField @@ -31901,9 +31901,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxIncludedIndicatorField = value End Set End Property - + ''' - _ + Public Property MinimumAmount() As MinimumAmountType Get Return Me.minimumAmountField @@ -31912,9 +31912,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumAmountField = value End Set End Property - + ''' - _ + Public Property MaximumAmount() As MaximumAmountType Get Return Me.maximumAmountField @@ -31923,9 +31923,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumAmountField = value End Set End Property - + ''' - _ + Public Property EstimatedAmount() As EstimatedAmountType Get Return Me.estimatedAmountField @@ -31934,9 +31934,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedAmountField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -31945,9 +31945,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property DeliveryPeriod() As PeriodType() Get Return Me.deliveryPeriodField @@ -31956,9 +31956,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryPeriodField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -31967,7 +31967,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredItemLocationQuantityField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -31977,7 +31977,7 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyValidityPeriodField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -31987,9 +31987,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property SubRequestForTenderLine() As RequestForTenderLineType() Get Return Me.subRequestForTenderLineField @@ -31999,60 +31999,60 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private lineExtensionAmountField As LineExtensionAmountType - + Private totalTaxAmountField As TotalTaxAmountType - + Private orderableUnitField As OrderableUnitType - + Private contentUnitQuantityField As ContentUnitQuantityType - + Private orderQuantityIncrementNumericField As OrderQuantityIncrementNumericType - + Private minimumOrderQuantityField As MinimumOrderQuantityType - + Private maximumOrderQuantityField As MaximumOrderQuantityType - + Private warrantyInformationField() As WarrantyInformationType - + Private packLevelCodeField As PackLevelCodeType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField As ItemType - + Private offeredItemLocationQuantityField() As ItemLocationQuantityType - + Private replacementRelatedItemField() As RelatedItemType - + Private warrantyPartyField As PartyType - + Private warrantyValidityPeriodField As PeriodType - + Private subTenderLineField() As TenderLineType - + Private callForTendersLineReferenceField As LineReferenceType - + Private callForTendersDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32061,9 +32061,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -32072,9 +32072,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -32083,9 +32083,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -32094,9 +32094,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaxAmount() As TotalTaxAmountType Get Return Me.totalTaxAmountField @@ -32105,9 +32105,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalTaxAmountField = value End Set End Property - + ''' - _ + Public Property OrderableUnit() As OrderableUnitType Get Return Me.orderableUnitField @@ -32116,9 +32116,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderableUnitField = value End Set End Property - + ''' - _ + Public Property ContentUnitQuantity() As ContentUnitQuantityType Get Return Me.contentUnitQuantityField @@ -32127,9 +32127,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contentUnitQuantityField = value End Set End Property - + ''' - _ + Public Property OrderQuantityIncrementNumeric() As OrderQuantityIncrementNumericType Get Return Me.orderQuantityIncrementNumericField @@ -32138,9 +32138,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderQuantityIncrementNumericField = value End Set End Property - + ''' - _ + Public Property MinimumOrderQuantity() As MinimumOrderQuantityType Get Return Me.minimumOrderQuantityField @@ -32149,9 +32149,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumOrderQuantity() As MaximumOrderQuantityType Get Return Me.maximumOrderQuantityField @@ -32160,9 +32160,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property WarrantyInformation() As WarrantyInformationType() Get Return Me.warrantyInformationField @@ -32171,9 +32171,9 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyInformationField = value End Set End Property - + ''' - _ + Public Property PackLevelCode() As PackLevelCodeType Get Return Me.packLevelCodeField @@ -32182,9 +32182,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packLevelCodeField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -32193,7 +32193,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -32203,9 +32203,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property OfferedItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.offeredItemLocationQuantityField @@ -32214,9 +32214,9 @@ Namespace Peppol.BISBilling30CreditNote Me.offeredItemLocationQuantityField = value End Set End Property - + ''' - _ + Public Property ReplacementRelatedItem() As RelatedItemType() Get Return Me.replacementRelatedItemField @@ -32225,7 +32225,7 @@ Namespace Peppol.BISBilling30CreditNote Me.replacementRelatedItemField = value End Set End Property - + ''' Public Property WarrantyParty() As PartyType Get @@ -32235,7 +32235,7 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyPartyField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -32245,9 +32245,9 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyValidityPeriodField = value End Set End Property - + ''' - _ + Public Property SubTenderLine() As TenderLineType() Get Return Me.subTenderLineField @@ -32256,7 +32256,7 @@ Namespace Peppol.BISBilling30CreditNote Me.subTenderLineField = value End Set End Property - + ''' Public Property CallForTendersLineReference() As LineReferenceType Get @@ -32266,7 +32266,7 @@ Namespace Peppol.BISBilling30CreditNote Me.callForTendersLineReferenceField = value End Set End Property - + ''' Public Property CallForTendersDocumentReference() As DocumentReferenceType Get @@ -32277,32 +32277,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class AwardingCriterionResponseType - + Private idField As IDType - + Private awardingCriterionIDField As AwardingCriterionIDType - + Private awardingCriterionDescriptionField() As AwardingCriterionDescriptionType - + Private descriptionField() As DescriptionType - + Private quantityField As QuantityType2 - + Private amountField As AmountType2 - + Private subordinateAwardingCriterionResponseField() As AwardingCriterionResponseType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32311,9 +32311,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionID() As AwardingCriterionIDType Get Return Me.awardingCriterionIDField @@ -32322,9 +32322,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardingCriterionIDField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionDescription() As AwardingCriterionDescriptionType() Get Return Me.awardingCriterionDescriptionField @@ -32333,9 +32333,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardingCriterionDescriptionField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -32344,9 +32344,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -32355,9 +32355,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -32366,9 +32366,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property SubordinateAwardingCriterionResponse() As AwardingCriterionResponseType() Get Return Me.subordinateAwardingCriterionResponseField @@ -32378,26 +32378,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DutyType1 - + Private amountField As AmountType2 - + Private dutyField As DutyType - + Private dutyCodeField As DutyCodeType - + Private taxCategoryField As TaxCategoryType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -32406,9 +32406,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property Duty() As DutyType Get Return Me.dutyField @@ -32417,9 +32417,9 @@ Namespace Peppol.BISBilling30CreditNote Me.dutyField = value End Set End Property - + ''' - _ + Public Property DutyCode() As DutyCodeType Get Return Me.dutyCodeField @@ -32428,7 +32428,7 @@ Namespace Peppol.BISBilling30CreditNote Me.dutyCodeField = value End Set End Property - + ''' Public Property TaxCategory() As TaxCategoryType Get @@ -32439,26 +32439,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueItemSpecificationUpdateLineType - + Private idField As IDType - + Private contractorCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32467,7 +32467,7 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' Public Property ContractorCustomerParty() As CustomerPartyType Get @@ -32477,7 +32477,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractorCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -32487,7 +32487,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -32498,80 +32498,80 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueLineType - + Private idField As IDType - + Private actionCodeField As ActionCodeType - + Private lifeCycleStatusCodeField As LifeCycleStatusCodeType - + Private contractSubdivisionField As ContractSubdivisionType - + Private noteField() As NoteType - + Private orderableIndicatorField As OrderableIndicatorType - + Private orderableUnitField As OrderableUnitType - + Private contentUnitQuantityField As ContentUnitQuantityType - + Private orderQuantityIncrementNumericField As OrderQuantityIncrementNumericType - + Private minimumOrderQuantityField As MinimumOrderQuantityType - + Private maximumOrderQuantityField As MaximumOrderQuantityType - + Private warrantyInformationField() As WarrantyInformationType - + Private packLevelCodeField As PackLevelCodeType - + Private contractorCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private warrantyPartyField As PartyType - + Private warrantyValidityPeriodField As PeriodType - + Private lineValidityPeriodField As PeriodType - + Private itemComparisonField() As ItemComparisonType - + Private componentRelatedItemField() As RelatedItemType - + Private accessoryRelatedItemField() As RelatedItemType - + Private requiredRelatedItemField() As RelatedItemType - + Private replacementRelatedItemField() As RelatedItemType - + Private complementaryRelatedItemField() As RelatedItemType - + Private replacedRelatedItemField() As RelatedItemType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField As ItemType - + Private keywordItemPropertyField() As ItemPropertyType - + Private callForTendersLineReferenceField As LineReferenceType - + Private callForTendersDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32580,9 +32580,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ActionCode() As ActionCodeType Get Return Me.actionCodeField @@ -32591,9 +32591,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actionCodeField = value End Set End Property - + ''' - _ + Public Property LifeCycleStatusCode() As LifeCycleStatusCodeType Get Return Me.lifeCycleStatusCodeField @@ -32602,9 +32602,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lifeCycleStatusCodeField = value End Set End Property - + ''' - _ + Public Property ContractSubdivision() As ContractSubdivisionType Get Return Me.contractSubdivisionField @@ -32613,9 +32613,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractSubdivisionField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -32624,9 +32624,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property OrderableIndicator() As OrderableIndicatorType Get Return Me.orderableIndicatorField @@ -32635,9 +32635,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderableIndicatorField = value End Set End Property - + ''' - _ + Public Property OrderableUnit() As OrderableUnitType Get Return Me.orderableUnitField @@ -32646,9 +32646,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderableUnitField = value End Set End Property - + ''' - _ + Public Property ContentUnitQuantity() As ContentUnitQuantityType Get Return Me.contentUnitQuantityField @@ -32657,9 +32657,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contentUnitQuantityField = value End Set End Property - + ''' - _ + Public Property OrderQuantityIncrementNumeric() As OrderQuantityIncrementNumericType Get Return Me.orderQuantityIncrementNumericField @@ -32668,9 +32668,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderQuantityIncrementNumericField = value End Set End Property - + ''' - _ + Public Property MinimumOrderQuantity() As MinimumOrderQuantityType Get Return Me.minimumOrderQuantityField @@ -32679,9 +32679,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumOrderQuantity() As MaximumOrderQuantityType Get Return Me.maximumOrderQuantityField @@ -32690,9 +32690,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property WarrantyInformation() As WarrantyInformationType() Get Return Me.warrantyInformationField @@ -32701,9 +32701,9 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyInformationField = value End Set End Property - + ''' - _ + Public Property PackLevelCode() As PackLevelCodeType Get Return Me.packLevelCodeField @@ -32712,7 +32712,7 @@ Namespace Peppol.BISBilling30CreditNote Me.packLevelCodeField = value End Set End Property - + ''' Public Property ContractorCustomerParty() As CustomerPartyType Get @@ -32722,7 +32722,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractorCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -32732,7 +32732,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property WarrantyParty() As PartyType Get @@ -32742,7 +32742,7 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyPartyField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -32752,7 +32752,7 @@ Namespace Peppol.BISBilling30CreditNote Me.warrantyValidityPeriodField = value End Set End Property - + ''' Public Property LineValidityPeriod() As PeriodType Get @@ -32762,9 +32762,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineValidityPeriodField = value End Set End Property - + ''' - _ + Public Property ItemComparison() As ItemComparisonType() Get Return Me.itemComparisonField @@ -32773,9 +32773,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemComparisonField = value End Set End Property - + ''' - _ + Public Property ComponentRelatedItem() As RelatedItemType() Get Return Me.componentRelatedItemField @@ -32784,9 +32784,9 @@ Namespace Peppol.BISBilling30CreditNote Me.componentRelatedItemField = value End Set End Property - + ''' - _ + Public Property AccessoryRelatedItem() As RelatedItemType() Get Return Me.accessoryRelatedItemField @@ -32795,9 +32795,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accessoryRelatedItemField = value End Set End Property - + ''' - _ + Public Property RequiredRelatedItem() As RelatedItemType() Get Return Me.requiredRelatedItemField @@ -32806,9 +32806,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredRelatedItemField = value End Set End Property - + ''' - _ + Public Property ReplacementRelatedItem() As RelatedItemType() Get Return Me.replacementRelatedItemField @@ -32817,9 +32817,9 @@ Namespace Peppol.BISBilling30CreditNote Me.replacementRelatedItemField = value End Set End Property - + ''' - _ + Public Property ComplementaryRelatedItem() As RelatedItemType() Get Return Me.complementaryRelatedItemField @@ -32828,9 +32828,9 @@ Namespace Peppol.BISBilling30CreditNote Me.complementaryRelatedItemField = value End Set End Property - + ''' - _ + Public Property ReplacedRelatedItem() As RelatedItemType() Get Return Me.replacedRelatedItemField @@ -32839,9 +32839,9 @@ Namespace Peppol.BISBilling30CreditNote Me.replacedRelatedItemField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -32850,9 +32850,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredItemLocationQuantityField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -32861,7 +32861,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -32871,9 +32871,9 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' - _ + Public Property KeywordItemProperty() As ItemPropertyType() Get Return Me.keywordItemPropertyField @@ -32882,7 +32882,7 @@ Namespace Peppol.BISBilling30CreditNote Me.keywordItemPropertyField = value End Set End Property - + ''' Public Property CallForTendersLineReference() As LineReferenceType Get @@ -32892,7 +32892,7 @@ Namespace Peppol.BISBilling30CreditNote Me.callForTendersLineReferenceField = value End Set End Property - + ''' Public Property CallForTendersDocumentReference() As DocumentReferenceType Get @@ -32903,22 +32903,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemComparisonType - + Private priceAmountField As PriceAmountType - + Private quantityField As QuantityType2 - + ''' - _ + Public Property PriceAmount() As PriceAmountType Get Return Me.priceAmountField @@ -32927,9 +32927,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceAmountField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -32939,26 +32939,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CataloguePricingUpdateLineType - + Private idField As IDType - + Private contractorCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32967,7 +32967,7 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' Public Property ContractorCustomerParty() As CustomerPartyType Get @@ -32977,7 +32977,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractorCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -32987,9 +32987,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -32999,38 +32999,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueReferenceType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private revisionDateField As RevisionDateType - + Private revisionTimeField As RevisionTimeType - + Private noteField() As NoteType - + Private descriptionField() As DescriptionType - + Private versionIDField As VersionIDType - + Private previousVersionIDField As PreviousVersionIDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33039,9 +33039,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -33050,9 +33050,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -33061,9 +33061,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -33072,9 +33072,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property RevisionDate() As RevisionDateType Get Return Me.revisionDateField @@ -33083,9 +33083,9 @@ Namespace Peppol.BISBilling30CreditNote Me.revisionDateField = value End Set End Property - + ''' - _ + Public Property RevisionTime() As RevisionTimeType Get Return Me.revisionTimeField @@ -33094,9 +33094,9 @@ Namespace Peppol.BISBilling30CreditNote Me.revisionTimeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -33105,9 +33105,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -33116,9 +33116,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -33127,9 +33127,9 @@ Namespace Peppol.BISBilling30CreditNote Me.versionIDField = value End Set End Property - + ''' - _ + Public Property PreviousVersionID() As PreviousVersionIDType Get Return Me.previousVersionIDField @@ -33139,30 +33139,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueRequestLineType - + Private idField As IDType - + Private contractSubdivisionField As ContractSubdivisionType - + Private noteField() As NoteType - + Private lineValidityPeriodField As PeriodType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33171,9 +33171,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ContractSubdivision() As ContractSubdivisionType Get Return Me.contractSubdivisionField @@ -33182,9 +33182,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractSubdivisionField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -33193,7 +33193,7 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' Public Property LineValidityPeriod() As PeriodType Get @@ -33203,9 +33203,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineValidityPeriodField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -33214,7 +33214,7 @@ Namespace Peppol.BISBilling30CreditNote Me.requiredItemLocationQuantityField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -33225,50 +33225,50 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CertificateOfOriginApplicationType - + Private referenceIDField As ReferenceIDType - + Private certificateTypeField As CertificateTypeType - + Private applicationStatusCodeField As ApplicationStatusCodeType - + Private originalJobIDField As OriginalJobIDType - + Private previousJobIDField As PreviousJobIDType - + Private remarksField() As RemarksType - + Private shipmentField As ShipmentType - + Private endorserPartyField() As EndorserPartyType - + Private preparationPartyField As PartyType - + Private issuerPartyField As PartyType - + Private exporterPartyField As PartyType - + Private importerPartyField As PartyType - + Private issuingCountryField As CountryType - + Private documentDistributionField() As DocumentDistributionType - + Private supportingDocumentReferenceField() As DocumentReferenceType - + Private signatureField() As SignatureType - + ''' - _ + Public Property ReferenceID() As ReferenceIDType Get Return Me.referenceIDField @@ -33277,9 +33277,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceIDField = value End Set End Property - + ''' - _ + Public Property CertificateType() As CertificateTypeType Get Return Me.certificateTypeField @@ -33288,9 +33288,9 @@ Namespace Peppol.BISBilling30CreditNote Me.certificateTypeField = value End Set End Property - + ''' - _ + Public Property ApplicationStatusCode() As ApplicationStatusCodeType Get Return Me.applicationStatusCodeField @@ -33299,9 +33299,9 @@ Namespace Peppol.BISBilling30CreditNote Me.applicationStatusCodeField = value End Set End Property - + ''' - _ + Public Property OriginalJobID() As OriginalJobIDType Get Return Me.originalJobIDField @@ -33310,9 +33310,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originalJobIDField = value End Set End Property - + ''' - _ + Public Property PreviousJobID() As PreviousJobIDType Get Return Me.previousJobIDField @@ -33321,9 +33321,9 @@ Namespace Peppol.BISBilling30CreditNote Me.previousJobIDField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -33332,7 +33332,7 @@ Namespace Peppol.BISBilling30CreditNote Me.remarksField = value End Set End Property - + ''' Public Property Shipment() As ShipmentType Get @@ -33342,9 +33342,9 @@ Namespace Peppol.BISBilling30CreditNote Me.shipmentField = value End Set End Property - + ''' - _ + Public Property EndorserParty() As EndorserPartyType() Get Return Me.endorserPartyField @@ -33353,7 +33353,7 @@ Namespace Peppol.BISBilling30CreditNote Me.endorserPartyField = value End Set End Property - + ''' Public Property PreparationParty() As PartyType Get @@ -33363,7 +33363,7 @@ Namespace Peppol.BISBilling30CreditNote Me.preparationPartyField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -33373,7 +33373,7 @@ Namespace Peppol.BISBilling30CreditNote Me.issuerPartyField = value End Set End Property - + ''' Public Property ExporterParty() As PartyType Get @@ -33383,7 +33383,7 @@ Namespace Peppol.BISBilling30CreditNote Me.exporterPartyField = value End Set End Property - + ''' Public Property ImporterParty() As PartyType Get @@ -33393,7 +33393,7 @@ Namespace Peppol.BISBilling30CreditNote Me.importerPartyField = value End Set End Property - + ''' Public Property IssuingCountry() As CountryType Get @@ -33403,9 +33403,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issuingCountryField = value End Set End Property - + ''' - _ + Public Property DocumentDistribution() As DocumentDistributionType() Get Return Me.documentDistributionField @@ -33414,9 +33414,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentDistributionField = value End Set End Property - + ''' - _ + Public Property SupportingDocumentReference() As DocumentReferenceType() Get Return Me.supportingDocumentReferenceField @@ -33425,9 +33425,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supportingDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -33437,26 +33437,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EndorserPartyType - + Private roleCodeField As RoleCodeType - + Private sequenceNumericField As SequenceNumericType - + Private partyField As PartyType - + Private signatoryContactField As ContactType - + ''' - _ + Public Property RoleCode() As RoleCodeType Get Return Me.roleCodeField @@ -33465,9 +33465,9 @@ Namespace Peppol.BISBilling30CreditNote Me.roleCodeField = value End Set End Property - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -33476,7 +33476,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceNumericField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -33486,7 +33486,7 @@ Namespace Peppol.BISBilling30CreditNote Me.partyField = value End Set End Property - + ''' Public Property SignatoryContact() As ContactType Get @@ -33497,24 +33497,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DocumentDistributionType - + Private printQualifierField As PrintQualifierType - + Private maximumCopiesNumericField As MaximumCopiesNumericType - + Private partyField As PartyType - + ''' - _ + Public Property PrintQualifier() As PrintQualifierType Get Return Me.printQualifierField @@ -33523,9 +33523,9 @@ Namespace Peppol.BISBilling30CreditNote Me.printQualifierField = value End Set End Property - + ''' - _ + Public Property MaximumCopiesNumeric() As MaximumCopiesNumericType Get Return Me.maximumCopiesNumericField @@ -33534,7 +33534,7 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumCopiesNumericField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -33545,30 +33545,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PaymentType - + Private idField As IDType - + Private paidAmountField As PaidAmountType - + Private receivedDateField As ReceivedDateType - + Private paidDateField As PaidDateType - + Private paidTimeField As PaidTimeType - + Private instructionIDField As InstructionIDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33577,9 +33577,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property PaidAmount() As PaidAmountType Get Return Me.paidAmountField @@ -33588,9 +33588,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paidAmountField = value End Set End Property - + ''' - _ + Public Property ReceivedDate() As ReceivedDateType Get Return Me.receivedDateField @@ -33599,9 +33599,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedDateField = value End Set End Property - + ''' - _ + Public Property PaidDate() As PaidDateType Get Return Me.paidDateField @@ -33610,9 +33610,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paidDateField = value End Set End Property - + ''' - _ + Public Property PaidTime() As PaidTimeType Get Return Me.paidTimeField @@ -33621,9 +33621,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paidTimeField = value End Set End Property - + ''' - _ + Public Property InstructionID() As InstructionIDType Get Return Me.instructionIDField @@ -33633,32 +33633,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionType - + Private utilityStatementTypeCodeField As UtilityStatementTypeCodeType - + Private mainPeriodField As PeriodType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private energyWaterSupplyField As EnergyWaterSupplyType - + Private telecommunicationsSupplyField As TelecommunicationsSupplyType - + Private legalMonetaryTotalField As MonetaryTotalType - + ''' - _ + Public Property UtilityStatementTypeCode() As UtilityStatementTypeCodeType Get Return Me.utilityStatementTypeCodeField @@ -33667,7 +33667,7 @@ Namespace Peppol.BISBilling30CreditNote Me.utilityStatementTypeCodeField = value End Set End Property - + ''' Public Property MainPeriod() As PeriodType Get @@ -33677,9 +33677,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mainPeriodField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -33688,9 +33688,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -33699,7 +33699,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' Public Property EnergyWaterSupply() As EnergyWaterSupplyType Get @@ -33709,7 +33709,7 @@ Namespace Peppol.BISBilling30CreditNote Me.energyWaterSupplyField = value End Set End Property - + ''' Public Property TelecommunicationsSupply() As TelecommunicationsSupplyType Get @@ -33719,7 +33719,7 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsSupplyField = value End Set End Property - + ''' Public Property LegalMonetaryTotal() As MonetaryTotalType Get @@ -33730,26 +33730,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EnergyWaterSupplyType - + Private consumptionReportField() As ConsumptionReportType - + Private energyTaxReportField() As EnergyTaxReportType - + Private consumptionAverageField() As ConsumptionAverageType - + Private energyWaterConsumptionCorrectionField() As ConsumptionCorrectionType - + ''' - _ + Public Property ConsumptionReport() As ConsumptionReportType() Get Return Me.consumptionReportField @@ -33758,9 +33758,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionReportField = value End Set End Property - + ''' - _ + Public Property EnergyTaxReport() As EnergyTaxReportType() Get Return Me.energyTaxReportField @@ -33769,9 +33769,9 @@ Namespace Peppol.BISBilling30CreditNote Me.energyTaxReportField = value End Set End Property - + ''' - _ + Public Property ConsumptionAverage() As ConsumptionAverageType() Get Return Me.consumptionAverageField @@ -33780,9 +33780,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionAverageField = value End Set End Property - + ''' - _ + Public Property EnergyWaterConsumptionCorrection() As ConsumptionCorrectionType() Get Return Me.energyWaterConsumptionCorrectionField @@ -33792,54 +33792,54 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionReportType - + Private idField As IDType - + Private consumptionTypeField As ConsumptionTypeType - + Private consumptionTypeCodeField As ConsumptionTypeCodeType - + Private descriptionField() As DescriptionType - + Private totalConsumedQuantityField As TotalConsumedQuantityType - + Private basicConsumedQuantityField As BasicConsumedQuantityType - + Private residentOccupantsNumericField As ResidentOccupantsNumericType - + Private consumersEnergyLevelCodeField As ConsumersEnergyLevelCodeType - + Private consumersEnergyLevelField As ConsumersEnergyLevelType - + Private residenceTypeField As ResidenceTypeType - + Private residenceTypeCodeField As ResidenceTypeCodeType - + Private heatingTypeField As HeatingTypeType - + Private heatingTypeCodeField As HeatingTypeCodeType - + Private periodField As PeriodType - + Private guidanceDocumentReferenceField As DocumentReferenceType - + Private documentReferenceField As DocumentReferenceType - + Private consumptionReportReferenceField() As ConsumptionReportReferenceType - + Private consumptionHistoryField() As ConsumptionHistoryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33848,9 +33848,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ConsumptionType() As ConsumptionTypeType Get Return Me.consumptionTypeField @@ -33859,9 +33859,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionTypeField = value End Set End Property - + ''' - _ + Public Property ConsumptionTypeCode() As ConsumptionTypeCodeType Get Return Me.consumptionTypeCodeField @@ -33870,9 +33870,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -33881,9 +33881,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property TotalConsumedQuantity() As TotalConsumedQuantityType Get Return Me.totalConsumedQuantityField @@ -33892,9 +33892,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalConsumedQuantityField = value End Set End Property - + ''' - _ + Public Property BasicConsumedQuantity() As BasicConsumedQuantityType Get Return Me.basicConsumedQuantityField @@ -33903,9 +33903,9 @@ Namespace Peppol.BISBilling30CreditNote Me.basicConsumedQuantityField = value End Set End Property - + ''' - _ + Public Property ResidentOccupantsNumeric() As ResidentOccupantsNumericType Get Return Me.residentOccupantsNumericField @@ -33914,9 +33914,9 @@ Namespace Peppol.BISBilling30CreditNote Me.residentOccupantsNumericField = value End Set End Property - + ''' - _ + Public Property ConsumersEnergyLevelCode() As ConsumersEnergyLevelCodeType Get Return Me.consumersEnergyLevelCodeField @@ -33925,9 +33925,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumersEnergyLevelCodeField = value End Set End Property - + ''' - _ + Public Property ConsumersEnergyLevel() As ConsumersEnergyLevelType Get Return Me.consumersEnergyLevelField @@ -33936,9 +33936,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumersEnergyLevelField = value End Set End Property - + ''' - _ + Public Property ResidenceType() As ResidenceTypeType Get Return Me.residenceTypeField @@ -33947,9 +33947,9 @@ Namespace Peppol.BISBilling30CreditNote Me.residenceTypeField = value End Set End Property - + ''' - _ + Public Property ResidenceTypeCode() As ResidenceTypeCodeType Get Return Me.residenceTypeCodeField @@ -33958,9 +33958,9 @@ Namespace Peppol.BISBilling30CreditNote Me.residenceTypeCodeField = value End Set End Property - + ''' - _ + Public Property HeatingType() As HeatingTypeType Get Return Me.heatingTypeField @@ -33969,9 +33969,9 @@ Namespace Peppol.BISBilling30CreditNote Me.heatingTypeField = value End Set End Property - + ''' - _ + Public Property HeatingTypeCode() As HeatingTypeCodeType Get Return Me.heatingTypeCodeField @@ -33980,7 +33980,7 @@ Namespace Peppol.BISBilling30CreditNote Me.heatingTypeCodeField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -33990,7 +33990,7 @@ Namespace Peppol.BISBilling30CreditNote Me.periodField = value End Set End Property - + ''' Public Property GuidanceDocumentReference() As DocumentReferenceType Get @@ -34000,7 +34000,7 @@ Namespace Peppol.BISBilling30CreditNote Me.guidanceDocumentReferenceField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -34010,9 +34010,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property ConsumptionReportReference() As ConsumptionReportReferenceType() Get Return Me.consumptionReportReferenceField @@ -34021,9 +34021,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionReportReferenceField = value End Set End Property - + ''' - _ + Public Property ConsumptionHistory() As ConsumptionHistoryType() Get Return Me.consumptionHistoryField @@ -34033,28 +34033,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionReportReferenceType - + Private consumptionReportIDField As ConsumptionReportIDType - + Private consumptionTypeField As ConsumptionTypeType - + Private consumptionTypeCodeField As ConsumptionTypeCodeType - + Private totalConsumedQuantityField As TotalConsumedQuantityType - + Private periodField As PeriodType - + ''' - _ + Public Property ConsumptionReportID() As ConsumptionReportIDType Get Return Me.consumptionReportIDField @@ -34063,9 +34063,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionReportIDField = value End Set End Property - + ''' - _ + Public Property ConsumptionType() As ConsumptionTypeType Get Return Me.consumptionTypeField @@ -34074,9 +34074,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionTypeField = value End Set End Property - + ''' - _ + Public Property ConsumptionTypeCode() As ConsumptionTypeCodeType Get Return Me.consumptionTypeCodeField @@ -34085,9 +34085,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionTypeCodeField = value End Set End Property - + ''' - _ + Public Property TotalConsumedQuantity() As TotalConsumedQuantityType Get Return Me.totalConsumedQuantityField @@ -34096,7 +34096,7 @@ Namespace Peppol.BISBilling30CreditNote Me.totalConsumedQuantityField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -34107,32 +34107,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionHistoryType - + Private meterNumberField As MeterNumberType - + Private quantityField As QuantityType2 - + Private amountField As AmountType2 - + Private consumptionLevelCodeField As ConsumptionLevelCodeType - + Private consumptionLevelField As ConsumptionLevelType - + Private descriptionField() As DescriptionType - + Private periodField As PeriodType - + ''' - _ + Public Property MeterNumber() As MeterNumberType Get Return Me.meterNumberField @@ -34141,9 +34141,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterNumberField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -34152,9 +34152,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -34163,9 +34163,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property ConsumptionLevelCode() As ConsumptionLevelCodeType Get Return Me.consumptionLevelCodeField @@ -34174,9 +34174,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionLevelCodeField = value End Set End Property - + ''' - _ + Public Property ConsumptionLevel() As ConsumptionLevelType Get Return Me.consumptionLevelField @@ -34185,9 +34185,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionLevelField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34196,7 +34196,7 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -34207,26 +34207,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EnergyTaxReportType - + Private taxEnergyAmountField As TaxEnergyAmountType - + Private taxEnergyOnAccountAmountField As TaxEnergyOnAccountAmountType - + Private taxEnergyBalanceAmountField As TaxEnergyBalanceAmountType - + Private taxSchemeField As TaxSchemeType - + ''' - _ + Public Property TaxEnergyAmount() As TaxEnergyAmountType Get Return Me.taxEnergyAmountField @@ -34235,9 +34235,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxEnergyAmountField = value End Set End Property - + ''' - _ + Public Property TaxEnergyOnAccountAmount() As TaxEnergyOnAccountAmountType Get Return Me.taxEnergyOnAccountAmountField @@ -34246,9 +34246,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxEnergyOnAccountAmountField = value End Set End Property - + ''' - _ + Public Property TaxEnergyBalanceAmount() As TaxEnergyBalanceAmountType Get Return Me.taxEnergyBalanceAmountField @@ -34257,7 +34257,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxEnergyBalanceAmountField = value End Set End Property - + ''' Public Property TaxScheme() As TaxSchemeType Get @@ -34268,22 +34268,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionAverageType - + Private averageAmountField As AverageAmountType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property AverageAmount() As AverageAmountType Get Return Me.averageAmountField @@ -34292,9 +34292,9 @@ Namespace Peppol.BISBilling30CreditNote Me.averageAmountField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34304,42 +34304,42 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionCorrectionType - + Private correctionTypeField As CorrectionTypeType - + Private correctionTypeCodeField As CorrectionTypeCodeType - + Private meterNumberField As MeterNumberType - + Private gasPressureQuantityField As GasPressureQuantityType - + Private actualTemperatureReductionQuantityField As ActualTemperatureReductionQuantityType - + Private normalTemperatureReductionQuantityField As NormalTemperatureReductionQuantityType - + Private differenceTemperatureReductionQuantityField As DifferenceTemperatureReductionQuantityType - + Private descriptionField() As DescriptionType - + Private correctionUnitAmountField As CorrectionUnitAmountType - + Private consumptionEnergyQuantityField As ConsumptionEnergyQuantityType - + Private consumptionWaterQuantityField As ConsumptionWaterQuantityType - + Private correctionAmountField As CorrectionAmountType - + ''' - _ + Public Property CorrectionType() As CorrectionTypeType Get Return Me.correctionTypeField @@ -34348,9 +34348,9 @@ Namespace Peppol.BISBilling30CreditNote Me.correctionTypeField = value End Set End Property - + ''' - _ + Public Property CorrectionTypeCode() As CorrectionTypeCodeType Get Return Me.correctionTypeCodeField @@ -34359,9 +34359,9 @@ Namespace Peppol.BISBilling30CreditNote Me.correctionTypeCodeField = value End Set End Property - + ''' - _ + Public Property MeterNumber() As MeterNumberType Get Return Me.meterNumberField @@ -34370,9 +34370,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterNumberField = value End Set End Property - + ''' - _ + Public Property GasPressureQuantity() As GasPressureQuantityType Get Return Me.gasPressureQuantityField @@ -34381,9 +34381,9 @@ Namespace Peppol.BISBilling30CreditNote Me.gasPressureQuantityField = value End Set End Property - + ''' - _ + Public Property ActualTemperatureReductionQuantity() As ActualTemperatureReductionQuantityType Get Return Me.actualTemperatureReductionQuantityField @@ -34392,9 +34392,9 @@ Namespace Peppol.BISBilling30CreditNote Me.actualTemperatureReductionQuantityField = value End Set End Property - + ''' - _ + Public Property NormalTemperatureReductionQuantity() As NormalTemperatureReductionQuantityType Get Return Me.normalTemperatureReductionQuantityField @@ -34403,9 +34403,9 @@ Namespace Peppol.BISBilling30CreditNote Me.normalTemperatureReductionQuantityField = value End Set End Property - + ''' - _ + Public Property DifferenceTemperatureReductionQuantity() As DifferenceTemperatureReductionQuantityType Get Return Me.differenceTemperatureReductionQuantityField @@ -34414,9 +34414,9 @@ Namespace Peppol.BISBilling30CreditNote Me.differenceTemperatureReductionQuantityField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34425,9 +34425,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CorrectionUnitAmount() As CorrectionUnitAmountType Get Return Me.correctionUnitAmountField @@ -34436,9 +34436,9 @@ Namespace Peppol.BISBilling30CreditNote Me.correctionUnitAmountField = value End Set End Property - + ''' - _ + Public Property ConsumptionEnergyQuantity() As ConsumptionEnergyQuantityType Get Return Me.consumptionEnergyQuantityField @@ -34447,9 +34447,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionEnergyQuantityField = value End Set End Property - + ''' - _ + Public Property ConsumptionWaterQuantity() As ConsumptionWaterQuantityType Get Return Me.consumptionWaterQuantityField @@ -34458,9 +34458,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionWaterQuantityField = value End Set End Property - + ''' - _ + Public Property CorrectionAmount() As CorrectionAmountType Get Return Me.correctionAmountField @@ -34470,30 +34470,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyType - + Private telecommunicationsSupplyType1Field As TelecommunicationsSupplyTypeType - + Private telecommunicationsSupplyTypeCodeField As TelecommunicationsSupplyTypeCodeType - + Private privacyCodeField As PrivacyCodeType - + Private descriptionField() As DescriptionType - + Private totalAmountField As TotalAmountType - + Private telecommunicationsSupplyLineField() As TelecommunicationsSupplyLineType - + ''' - _ + Public Property TelecommunicationsSupplyType1() As TelecommunicationsSupplyTypeType Get Return Me.telecommunicationsSupplyType1Field @@ -34502,9 +34502,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsSupplyType1Field = value End Set End Property - + ''' - _ + Public Property TelecommunicationsSupplyTypeCode() As TelecommunicationsSupplyTypeCodeType Get Return Me.telecommunicationsSupplyTypeCodeField @@ -34513,9 +34513,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsSupplyTypeCodeField = value End Set End Property - + ''' - _ + Public Property PrivacyCode() As PrivacyCodeType Get Return Me.privacyCodeField @@ -34524,9 +34524,9 @@ Namespace Peppol.BISBilling30CreditNote Me.privacyCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34535,9 +34535,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property TotalAmount() As TotalAmountType Get Return Me.totalAmountField @@ -34546,9 +34546,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalAmountField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsSupplyLine() As TelecommunicationsSupplyLineType() Get Return Me.telecommunicationsSupplyLineField @@ -34558,34 +34558,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyLineType - + Private idField As IDType - + Private phoneNumberField As PhoneNumberType - + Private descriptionField() As DescriptionType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private exchangeRateField() As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private telecommunicationsServiceField() As TelecommunicationsServiceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -34594,9 +34594,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property PhoneNumber() As PhoneNumberType Get Return Me.phoneNumberField @@ -34605,9 +34605,9 @@ Namespace Peppol.BISBilling30CreditNote Me.phoneNumberField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34616,9 +34616,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -34627,9 +34627,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property ExchangeRate() As ExchangeRateType() Get Return Me.exchangeRateField @@ -34638,9 +34638,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -34649,9 +34649,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -34660,9 +34660,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsService() As TelecommunicationsServiceType() Get Return Me.telecommunicationsServiceField @@ -34672,60 +34672,60 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceType - + Private idField As IDType - + Private callDateField As CallDateType - + Private callTimeField As CallTimeType - + Private serviceNumberCalledField As ServiceNumberCalledType - + Private telecommunicationsServiceCategoryField As TelecommunicationsServiceCategoryType - + Private telecommunicationsServiceCategoryCodeField As TelecommunicationsServiceCategoryCodeType - + Private movieTitleField As MovieTitleType - + Private roamingPartnerNameField As RoamingPartnerNameType - + Private payPerViewField As PayPerViewType - + Private quantityField As QuantityType2 - + Private telecommunicationsServiceCallField As TelecommunicationsServiceCallType - + Private telecommunicationsServiceCallCodeField As TelecommunicationsServiceCallCodeType - + Private callBaseAmountField As CallBaseAmountType - + Private callExtensionAmountField As CallExtensionAmountType - + Private priceField As PriceType - + Private countryField As CountryType - + Private exchangeRateField() As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private callDutyField() As DutyType1 - + Private timeDutyField() As DutyType1 - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -34734,9 +34734,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property CallDate() As CallDateType Get Return Me.callDateField @@ -34745,9 +34745,9 @@ Namespace Peppol.BISBilling30CreditNote Me.callDateField = value End Set End Property - + ''' - _ + Public Property CallTime() As CallTimeType Get Return Me.callTimeField @@ -34756,9 +34756,9 @@ Namespace Peppol.BISBilling30CreditNote Me.callTimeField = value End Set End Property - + ''' - _ + Public Property ServiceNumberCalled() As ServiceNumberCalledType Get Return Me.serviceNumberCalledField @@ -34767,9 +34767,9 @@ Namespace Peppol.BISBilling30CreditNote Me.serviceNumberCalledField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCategory() As TelecommunicationsServiceCategoryType Get Return Me.telecommunicationsServiceCategoryField @@ -34778,9 +34778,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsServiceCategoryField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCategoryCode() As TelecommunicationsServiceCategoryCodeType Get Return Me.telecommunicationsServiceCategoryCodeField @@ -34789,9 +34789,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsServiceCategoryCodeField = value End Set End Property - + ''' - _ + Public Property MovieTitle() As MovieTitleType Get Return Me.movieTitleField @@ -34800,9 +34800,9 @@ Namespace Peppol.BISBilling30CreditNote Me.movieTitleField = value End Set End Property - + ''' - _ + Public Property RoamingPartnerName() As RoamingPartnerNameType Get Return Me.roamingPartnerNameField @@ -34811,9 +34811,9 @@ Namespace Peppol.BISBilling30CreditNote Me.roamingPartnerNameField = value End Set End Property - + ''' - _ + Public Property PayPerView() As PayPerViewType Get Return Me.payPerViewField @@ -34822,9 +34822,9 @@ Namespace Peppol.BISBilling30CreditNote Me.payPerViewField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -34833,9 +34833,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCall() As TelecommunicationsServiceCallType Get Return Me.telecommunicationsServiceCallField @@ -34844,9 +34844,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsServiceCallField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCallCode() As TelecommunicationsServiceCallCodeType Get Return Me.telecommunicationsServiceCallCodeField @@ -34855,9 +34855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.telecommunicationsServiceCallCodeField = value End Set End Property - + ''' - _ + Public Property CallBaseAmount() As CallBaseAmountType Get Return Me.callBaseAmountField @@ -34866,9 +34866,9 @@ Namespace Peppol.BISBilling30CreditNote Me.callBaseAmountField = value End Set End Property - + ''' - _ + Public Property CallExtensionAmount() As CallExtensionAmountType Get Return Me.callExtensionAmountField @@ -34877,7 +34877,7 @@ Namespace Peppol.BISBilling30CreditNote Me.callExtensionAmountField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -34887,7 +34887,7 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' Public Property Country() As CountryType Get @@ -34897,9 +34897,9 @@ Namespace Peppol.BISBilling30CreditNote Me.countryField = value End Set End Property - + ''' - _ + Public Property ExchangeRate() As ExchangeRateType() Get Return Me.exchangeRateField @@ -34908,9 +34908,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -34919,9 +34919,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -34930,9 +34930,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property CallDuty() As DutyType1() Get Return Me.callDutyField @@ -34941,9 +34941,9 @@ Namespace Peppol.BISBilling30CreditNote Me.callDutyField = value End Set End Property - + ''' - _ + Public Property TimeDuty() As DutyType1() Get Return Me.timeDutyField @@ -34953,40 +34953,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionLineType - + Private idField As IDType - + Private parentDocumentLineReferenceIDField As ParentDocumentLineReferenceIDType - + Private invoicedQuantityField As InvoicedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private periodField As PeriodType - + Private deliveryField() As DeliveryType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private utilityItemField As UtilityItemType - + Private priceField As PriceType - + Private unstructuredPriceField As UnstructuredPriceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -34995,9 +34995,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property ParentDocumentLineReferenceID() As ParentDocumentLineReferenceIDType Get Return Me.parentDocumentLineReferenceIDField @@ -35006,9 +35006,9 @@ Namespace Peppol.BISBilling30CreditNote Me.parentDocumentLineReferenceIDField = value End Set End Property - + ''' - _ + Public Property InvoicedQuantity() As InvoicedQuantityType Get Return Me.invoicedQuantityField @@ -35017,9 +35017,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -35028,7 +35028,7 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -35038,9 +35038,9 @@ Namespace Peppol.BISBilling30CreditNote Me.periodField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -35049,9 +35049,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -35060,9 +35060,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -35071,7 +35071,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' Public Property UtilityItem() As UtilityItemType Get @@ -35081,7 +35081,7 @@ Namespace Peppol.BISBilling30CreditNote Me.utilityItemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -35091,7 +35091,7 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' Public Property UnstructuredPrice() As UnstructuredPriceType Get @@ -35102,48 +35102,48 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class UtilityItemType - + Private idField As IDType - + Private subscriberIDField As SubscriberIDType - + Private subscriberTypeField As SubscriberTypeType - + Private subscriberTypeCodeField As SubscriberTypeCodeType - + Private descriptionField() As DescriptionType - + Private packQuantityField As PackQuantityType - + Private packSizeNumericField As PackSizeNumericType - + Private consumptionTypeField As ConsumptionTypeType - + Private consumptionTypeCodeField As ConsumptionTypeCodeType - + Private currentChargeTypeField As CurrentChargeTypeType - + Private currentChargeTypeCodeField As CurrentChargeTypeCodeType - + Private oneTimeChargeTypeField As OneTimeChargeTypeType - + Private oneTimeChargeTypeCodeField As OneTimeChargeTypeCodeType - + Private taxCategoryField As TaxCategoryType - + Private contractField As ContractType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -35152,9 +35152,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property SubscriberID() As SubscriberIDType Get Return Me.subscriberIDField @@ -35163,9 +35163,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberIDField = value End Set End Property - + ''' - _ + Public Property SubscriberType() As SubscriberTypeType Get Return Me.subscriberTypeField @@ -35174,9 +35174,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberTypeField = value End Set End Property - + ''' - _ + Public Property SubscriberTypeCode() As SubscriberTypeCodeType Get Return Me.subscriberTypeCodeField @@ -35185,9 +35185,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -35196,9 +35196,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property PackQuantity() As PackQuantityType Get Return Me.packQuantityField @@ -35207,9 +35207,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packQuantityField = value End Set End Property - + ''' - _ + Public Property PackSizeNumeric() As PackSizeNumericType Get Return Me.packSizeNumericField @@ -35218,9 +35218,9 @@ Namespace Peppol.BISBilling30CreditNote Me.packSizeNumericField = value End Set End Property - + ''' - _ + Public Property ConsumptionType() As ConsumptionTypeType Get Return Me.consumptionTypeField @@ -35229,9 +35229,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionTypeField = value End Set End Property - + ''' - _ + Public Property ConsumptionTypeCode() As ConsumptionTypeCodeType Get Return Me.consumptionTypeCodeField @@ -35240,9 +35240,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionTypeCodeField = value End Set End Property - + ''' - _ + Public Property CurrentChargeType() As CurrentChargeTypeType Get Return Me.currentChargeTypeField @@ -35251,9 +35251,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currentChargeTypeField = value End Set End Property - + ''' - _ + Public Property CurrentChargeTypeCode() As CurrentChargeTypeCodeType Get Return Me.currentChargeTypeCodeField @@ -35262,9 +35262,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currentChargeTypeCodeField = value End Set End Property - + ''' - _ + Public Property OneTimeChargeType() As OneTimeChargeTypeType Get Return Me.oneTimeChargeTypeField @@ -35273,9 +35273,9 @@ Namespace Peppol.BISBilling30CreditNote Me.oneTimeChargeTypeField = value End Set End Property - + ''' - _ + Public Property OneTimeChargeTypeCode() As OneTimeChargeTypeCodeType Get Return Me.oneTimeChargeTypeCodeField @@ -35284,7 +35284,7 @@ Namespace Peppol.BISBilling30CreditNote Me.oneTimeChargeTypeCodeField = value End Set End Property - + ''' Public Property TaxCategory() As TaxCategoryType Get @@ -35294,7 +35294,7 @@ Namespace Peppol.BISBilling30CreditNote Me.taxCategoryField = value End Set End Property - + ''' Public Property Contract() As ContractType Get @@ -35305,22 +35305,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class UnstructuredPriceType - + Private priceAmountField As PriceAmountType - + Private timeAmountField As TimeAmountType - + ''' - _ + Public Property PriceAmount() As PriceAmountType Get Return Me.priceAmountField @@ -35329,9 +35329,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceAmountField = value End Set End Property - + ''' - _ + Public Property TimeAmount() As TimeAmountType Get Return Me.timeAmountField @@ -35341,36 +35341,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionPointType - + Private idField As IDType - + Private descriptionField() As DescriptionType - + Private subscriberIDField As SubscriberIDType - + Private subscriberTypeField As SubscriberTypeType - + Private subscriberTypeCodeField As SubscriberTypeCodeType - + Private totalDeliveredQuantityField As TotalDeliveredQuantityType - + Private addressField As AddressType - + Private webSiteAccessField As WebSiteAccessType - + Private utilityMeterField() As MeterType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -35379,9 +35379,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -35390,9 +35390,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property SubscriberID() As SubscriberIDType Get Return Me.subscriberIDField @@ -35401,9 +35401,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberIDField = value End Set End Property - + ''' - _ + Public Property SubscriberType() As SubscriberTypeType Get Return Me.subscriberTypeField @@ -35412,9 +35412,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberTypeField = value End Set End Property - + ''' - _ + Public Property SubscriberTypeCode() As SubscriberTypeCodeType Get Return Me.subscriberTypeCodeField @@ -35423,9 +35423,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberTypeCodeField = value End Set End Property - + ''' - _ + Public Property TotalDeliveredQuantity() As TotalDeliveredQuantityType Get Return Me.totalDeliveredQuantityField @@ -35434,7 +35434,7 @@ Namespace Peppol.BISBilling30CreditNote Me.totalDeliveredQuantityField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -35444,7 +35444,7 @@ Namespace Peppol.BISBilling30CreditNote Me.addressField = value End Set End Property - + ''' Public Property WebSiteAccess() As WebSiteAccessType Get @@ -35454,9 +35454,9 @@ Namespace Peppol.BISBilling30CreditNote Me.webSiteAccessField = value End Set End Property - + ''' - _ + Public Property UtilityMeter() As MeterType() Get Return Me.utilityMeterField @@ -35466,24 +35466,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class WebSiteAccessType - + Private uRIField As URIType - + Private passwordField As PasswordType - + Private loginField As LoginType - + ''' - _ + Public Property URI() As URIType Get Return Me.uRIField @@ -35492,9 +35492,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uRIField = value End Set End Property - + ''' - _ + Public Property Password() As PasswordType Get Return Me.passwordField @@ -35503,9 +35503,9 @@ Namespace Peppol.BISBilling30CreditNote Me.passwordField = value End Set End Property - + ''' - _ + Public Property Login() As LoginType Get Return Me.loginField @@ -35515,32 +35515,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MeterType - + Private meterNumberField As MeterNumberType - + Private meterNameField As MeterNameType - + Private meterConstantField As MeterConstantType - + Private meterConstantCodeField As MeterConstantCodeType - + Private totalDeliveredQuantityField As TotalDeliveredQuantityType - + Private meterReadingField() As MeterReadingType - + Private meterPropertyField() As MeterPropertyType - + ''' - _ + Public Property MeterNumber() As MeterNumberType Get Return Me.meterNumberField @@ -35549,9 +35549,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterNumberField = value End Set End Property - + ''' - _ + Public Property MeterName() As MeterNameType Get Return Me.meterNameField @@ -35560,9 +35560,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterNameField = value End Set End Property - + ''' - _ + Public Property MeterConstant() As MeterConstantType Get Return Me.meterConstantField @@ -35571,9 +35571,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterConstantField = value End Set End Property - + ''' - _ + Public Property MeterConstantCode() As MeterConstantCodeType Get Return Me.meterConstantCodeField @@ -35582,9 +35582,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterConstantCodeField = value End Set End Property - + ''' - _ + Public Property TotalDeliveredQuantity() As TotalDeliveredQuantityType Get Return Me.totalDeliveredQuantityField @@ -35593,9 +35593,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalDeliveredQuantityField = value End Set End Property - + ''' - _ + Public Property MeterReading() As MeterReadingType() Get Return Me.meterReadingField @@ -35604,9 +35604,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterReadingField = value End Set End Property - + ''' - _ + Public Property MeterProperty() As MeterPropertyType() Get Return Me.meterPropertyField @@ -35616,44 +35616,44 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MeterReadingType - + Private idField As IDType - + Private meterReadingType1Field As MeterReadingTypeType - + Private meterReadingTypeCodeField As MeterReadingTypeCodeType - + Private previousMeterReadingDateField As PreviousMeterReadingDateType - + Private previousMeterQuantityField As PreviousMeterQuantityType - + Private latestMeterReadingDateField As LatestMeterReadingDateType - + Private latestMeterQuantityField As LatestMeterQuantityType - + Private previousMeterReadingMethodField As PreviousMeterReadingMethodType - + Private previousMeterReadingMethodCodeField As PreviousMeterReadingMethodCodeType - + Private latestMeterReadingMethodField As LatestMeterReadingMethodType - + Private latestMeterReadingMethodCodeField As LatestMeterReadingMethodCodeType - + Private meterReadingCommentsField() As MeterReadingCommentsType - + Private deliveredQuantityField As DeliveredQuantityType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -35662,9 +35662,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property MeterReadingType1() As MeterReadingTypeType Get Return Me.meterReadingType1Field @@ -35673,9 +35673,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterReadingType1Field = value End Set End Property - + ''' - _ + Public Property MeterReadingTypeCode() As MeterReadingTypeCodeType Get Return Me.meterReadingTypeCodeField @@ -35684,9 +35684,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterReadingTypeCodeField = value End Set End Property - + ''' - _ + Public Property PreviousMeterReadingDate() As PreviousMeterReadingDateType Get Return Me.previousMeterReadingDateField @@ -35695,9 +35695,9 @@ Namespace Peppol.BISBilling30CreditNote Me.previousMeterReadingDateField = value End Set End Property - + ''' - _ + Public Property PreviousMeterQuantity() As PreviousMeterQuantityType Get Return Me.previousMeterQuantityField @@ -35706,9 +35706,9 @@ Namespace Peppol.BISBilling30CreditNote Me.previousMeterQuantityField = value End Set End Property - + ''' - _ + Public Property LatestMeterReadingDate() As LatestMeterReadingDateType Get Return Me.latestMeterReadingDateField @@ -35717,9 +35717,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestMeterReadingDateField = value End Set End Property - + ''' - _ + Public Property LatestMeterQuantity() As LatestMeterQuantityType Get Return Me.latestMeterQuantityField @@ -35728,9 +35728,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestMeterQuantityField = value End Set End Property - + ''' - _ + Public Property PreviousMeterReadingMethod() As PreviousMeterReadingMethodType Get Return Me.previousMeterReadingMethodField @@ -35739,9 +35739,9 @@ Namespace Peppol.BISBilling30CreditNote Me.previousMeterReadingMethodField = value End Set End Property - + ''' - _ + Public Property PreviousMeterReadingMethodCode() As PreviousMeterReadingMethodCodeType Get Return Me.previousMeterReadingMethodCodeField @@ -35750,9 +35750,9 @@ Namespace Peppol.BISBilling30CreditNote Me.previousMeterReadingMethodCodeField = value End Set End Property - + ''' - _ + Public Property LatestMeterReadingMethod() As LatestMeterReadingMethodType Get Return Me.latestMeterReadingMethodField @@ -35761,9 +35761,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestMeterReadingMethodField = value End Set End Property - + ''' - _ + Public Property LatestMeterReadingMethodCode() As LatestMeterReadingMethodCodeType Get Return Me.latestMeterReadingMethodCodeField @@ -35772,9 +35772,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestMeterReadingMethodCodeField = value End Set End Property - + ''' - _ + Public Property MeterReadingComments() As MeterReadingCommentsType() Get Return Me.meterReadingCommentsField @@ -35783,9 +35783,9 @@ Namespace Peppol.BISBilling30CreditNote Me.meterReadingCommentsField = value End Set End Property - + ''' - _ + Public Property DeliveredQuantity() As DeliveredQuantityType Get Return Me.deliveredQuantityField @@ -35795,28 +35795,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MeterPropertyType - + Private nameField As NameType1 - + Private nameCodeField As NameCodeType - + Private valueField As ValueType - + Private valueQuantityField As ValueQuantityType - + Private valueQualifierField() As ValueQualifierType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -35825,9 +35825,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' - _ + Public Property NameCode() As NameCodeType Get Return Me.nameCodeField @@ -35836,9 +35836,9 @@ Namespace Peppol.BISBilling30CreditNote Me.nameCodeField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -35847,9 +35847,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueField = value End Set End Property - + ''' - _ + Public Property ValueQuantity() As ValueQuantityType Get Return Me.valueQuantityField @@ -35858,9 +35858,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueQuantityField = value End Set End Property - + ''' - _ + Public Property ValueQualifier() As ValueQualifierType() Get Return Me.valueQualifierField @@ -35870,22 +35870,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContractingActivityType - + Private activityTypeCodeField As ActivityTypeCodeType - + Private activityTypeField As ActivityTypeType - + ''' - _ + Public Property ActivityTypeCode() As ActivityTypeCodeType Get Return Me.activityTypeCodeField @@ -35894,9 +35894,9 @@ Namespace Peppol.BISBilling30CreditNote Me.activityTypeCodeField = value End Set End Property - + ''' - _ + Public Property ActivityType() As ActivityTypeType Get Return Me.activityTypeField @@ -35906,26 +35906,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContractingPartyType - + Private buyerProfileURIField As BuyerProfileURIType - + Private contractingPartyType1Field() As ContractingPartyTypeType - + Private contractingActivityField() As ContractingActivityType - + Private partyField As PartyType - + ''' - _ + Public Property BuyerProfileURI() As BuyerProfileURIType Get Return Me.buyerProfileURIField @@ -35934,9 +35934,9 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerProfileURIField = value End Set End Property - + ''' - _ + Public Property ContractingPartyType1() As ContractingPartyTypeType() Get Return Me.contractingPartyType1Field @@ -35945,9 +35945,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractingPartyType1Field = value End Set End Property - + ''' - _ + Public Property ContractingActivity() As ContractingActivityType() Get Return Me.contractingActivityField @@ -35956,7 +35956,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractingActivityField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -35967,22 +35967,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ContractingPartyTypeType - + Private partyTypeCodeField As PartyTypeCodeType - + Private partyTypeField As PartyTypeType - + ''' - _ + Public Property PartyTypeCode() As PartyTypeCodeType Get Return Me.partyTypeCodeField @@ -35991,9 +35991,9 @@ Namespace Peppol.BISBilling30CreditNote Me.partyTypeCodeField = value End Set End Property - + ''' - _ + Public Property PartyType() As PartyTypeType Get Return Me.partyTypeField @@ -36003,74 +36003,74 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CreditNoteLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private creditedQuantityField As CreditedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxPointDateField As TaxPointDateType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private freeOfChargeIndicatorField As FreeOfChargeIndicatorType - + Private invoicePeriodField() As PeriodType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private discrepancyResponseField() As ResponseType - + Private despatchLineReferenceField() As LineReferenceType - + Private receiptLineReferenceField() As LineReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private pricingReferenceField As PricingReferenceType - + Private originatorPartyField As PartyType - + Private deliveryField() As DeliveryType - + Private paymentTermsField() As PaymentTermsType - + Private taxTotalField() As TaxTotalType - + Private allowanceChargeField() As AllowanceChargeType - + Private itemField As ItemType - + Private priceField As PriceType - + Private deliveryTermsField() As DeliveryTermsType - + Private subCreditNoteLineField() As CreditNoteLineType - + Private itemPriceExtensionField As PriceExtensionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -36079,9 +36079,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -36090,9 +36090,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -36101,9 +36101,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property CreditedQuantity() As CreditedQuantityType Get Return Me.creditedQuantityField @@ -36112,9 +36112,9 @@ Namespace Peppol.BISBilling30CreditNote Me.creditedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -36123,9 +36123,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -36134,9 +36134,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -36145,9 +36145,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -36156,9 +36156,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -36167,9 +36167,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property FreeOfChargeIndicator() As FreeOfChargeIndicatorType Get Return Me.freeOfChargeIndicatorField @@ -36178,9 +36178,9 @@ Namespace Peppol.BISBilling30CreditNote Me.freeOfChargeIndicatorField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -36189,9 +36189,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -36200,9 +36200,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DiscrepancyResponse() As ResponseType() Get Return Me.discrepancyResponseField @@ -36211,9 +36211,9 @@ Namespace Peppol.BISBilling30CreditNote Me.discrepancyResponseField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -36222,9 +36222,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptLineReference() As LineReferenceType() Get Return Me.receiptLineReferenceField @@ -36233,9 +36233,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receiptLineReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -36244,9 +36244,9 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -36255,7 +36255,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -36265,7 +36265,7 @@ Namespace Peppol.BISBilling30CreditNote Me.pricingReferenceField = value End Set End Property - + ''' Public Property OriginatorParty() As PartyType Get @@ -36275,9 +36275,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originatorPartyField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -36286,9 +36286,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -36297,9 +36297,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -36308,9 +36308,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -36319,7 +36319,7 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -36329,7 +36329,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -36339,9 +36339,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -36350,9 +36350,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' - _ + Public Property SubCreditNoteLine() As CreditNoteLineType() Get Return Me.subCreditNoteLineField @@ -36361,7 +36361,7 @@ Namespace Peppol.BISBilling30CreditNote Me.subCreditNoteLineField = value End Set End Property - + ''' Public Property ItemPriceExtension() As PriceExtensionType Get @@ -36372,60 +36372,60 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class DebitNoteLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private debitedQuantityField As DebitedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxPointDateField As TaxPointDateType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private discrepancyResponseField() As ResponseType - + Private despatchLineReferenceField() As LineReferenceType - + Private receiptLineReferenceField() As LineReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private pricingReferenceField As PricingReferenceType - + Private deliveryField() As DeliveryType - + Private taxTotalField() As TaxTotalType - + Private allowanceChargeField() As AllowanceChargeType - + Private itemField As ItemType - + Private priceField As PriceType - + Private subDebitNoteLineField() As DebitNoteLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -36434,9 +36434,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -36445,9 +36445,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -36456,9 +36456,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property DebitedQuantity() As DebitedQuantityType Get Return Me.debitedQuantityField @@ -36467,9 +36467,9 @@ Namespace Peppol.BISBilling30CreditNote Me.debitedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -36478,9 +36478,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -36489,9 +36489,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -36500,9 +36500,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -36511,9 +36511,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -36522,9 +36522,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property DiscrepancyResponse() As ResponseType() Get Return Me.discrepancyResponseField @@ -36533,9 +36533,9 @@ Namespace Peppol.BISBilling30CreditNote Me.discrepancyResponseField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -36544,9 +36544,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptLineReference() As LineReferenceType() Get Return Me.receiptLineReferenceField @@ -36555,9 +36555,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receiptLineReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -36566,9 +36566,9 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -36577,7 +36577,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -36587,9 +36587,9 @@ Namespace Peppol.BISBilling30CreditNote Me.pricingReferenceField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -36598,9 +36598,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -36609,9 +36609,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -36620,7 +36620,7 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -36630,7 +36630,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -36640,9 +36640,9 @@ Namespace Peppol.BISBilling30CreditNote Me.priceField = value End Set End Property - + ''' - _ + Public Property SubDebitNoteLine() As DebitNoteLineType() Get Return Me.subDebitNoteLineField @@ -36652,28 +36652,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EconomicOperatorShortListType - + Private limitationDescriptionField() As LimitationDescriptionType - + Private expectedQuantityField As ExpectedQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private minimumQuantityField As MinimumQuantityType - + Private preSelectedPartyField() As PartyType - + ''' - _ + Public Property LimitationDescription() As LimitationDescriptionType() Get Return Me.limitationDescriptionField @@ -36682,9 +36682,9 @@ Namespace Peppol.BISBilling30CreditNote Me.limitationDescriptionField = value End Set End Property - + ''' - _ + Public Property ExpectedQuantity() As ExpectedQuantityType Get Return Me.expectedQuantityField @@ -36693,9 +36693,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expectedQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -36704,9 +36704,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -36715,9 +36715,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property PreSelectedParty() As PartyType() Get Return Me.preSelectedPartyField @@ -36727,28 +36727,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EndorsementType - + Private documentIDField As DocumentIDType - + Private approvalStatusField As ApprovalStatusType - + Private remarksField() As RemarksType - + Private endorserPartyField As EndorserPartyType - + Private signatureField() As SignatureType - + ''' - _ + Public Property DocumentID() As DocumentIDType Get Return Me.documentIDField @@ -36757,9 +36757,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentIDField = value End Set End Property - + ''' - _ + Public Property ApprovalStatus() As ApprovalStatusType Get Return Me.approvalStatusField @@ -36768,9 +36768,9 @@ Namespace Peppol.BISBilling30CreditNote Me.approvalStatusField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -36779,7 +36779,7 @@ Namespace Peppol.BISBilling30CreditNote Me.remarksField = value End Set End Property - + ''' Public Property EndorserParty() As EndorserPartyType Get @@ -36789,9 +36789,9 @@ Namespace Peppol.BISBilling30CreditNote Me.endorserPartyField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -36801,36 +36801,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EventType - + Private identificationIDField As IdentificationIDType - + Private occurrenceDateField As OccurrenceDateType - + Private occurrenceTimeField As OccurrenceTimeType - + Private typeCodeField As TypeCodeType - + Private descriptionField() As DescriptionType - + Private completionIndicatorField As CompletionIndicatorType - + Private currentStatusField() As StatusType - + Private contactField() As ContactType - + Private occurenceLocationField As LocationType1 - + ''' - _ + Public Property IdentificationID() As IdentificationIDType Get Return Me.identificationIDField @@ -36839,9 +36839,9 @@ Namespace Peppol.BISBilling30CreditNote Me.identificationIDField = value End Set End Property - + ''' - _ + Public Property OccurrenceDate() As OccurrenceDateType Get Return Me.occurrenceDateField @@ -36850,9 +36850,9 @@ Namespace Peppol.BISBilling30CreditNote Me.occurrenceDateField = value End Set End Property - + ''' - _ + Public Property OccurrenceTime() As OccurrenceTimeType Get Return Me.occurrenceTimeField @@ -36861,9 +36861,9 @@ Namespace Peppol.BISBilling30CreditNote Me.occurrenceTimeField = value End Set End Property - + ''' - _ + Public Property TypeCode() As TypeCodeType Get Return Me.typeCodeField @@ -36872,9 +36872,9 @@ Namespace Peppol.BISBilling30CreditNote Me.typeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -36883,9 +36883,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CompletionIndicator() As CompletionIndicatorType Get Return Me.completionIndicatorField @@ -36894,9 +36894,9 @@ Namespace Peppol.BISBilling30CreditNote Me.completionIndicatorField = value End Set End Property - + ''' - _ + Public Property CurrentStatus() As StatusType() Get Return Me.currentStatusField @@ -36905,9 +36905,9 @@ Namespace Peppol.BISBilling30CreditNote Me.currentStatusField = value End Set End Property - + ''' - _ + Public Property Contact() As ContactType() Get Return Me.contactField @@ -36916,7 +36916,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contactField = value End Set End Property - + ''' Public Property OccurenceLocation() As LocationType1 Get @@ -36927,24 +36927,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EventCommentType - + Private commentField As CommentType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + ''' - _ + Public Property Comment() As CommentType Get Return Me.commentField @@ -36953,9 +36953,9 @@ Namespace Peppol.BISBilling30CreditNote Me.commentField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -36964,9 +36964,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -36976,26 +36976,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EventLineItemType - + Private lineNumberNumericField As LineNumberNumericType - + Private participatingLocationsLocationField As LocationType1 - + Private retailPlannedImpactField() As RetailPlannedImpactType - + Private supplyItemField As ItemType - + ''' - _ + Public Property LineNumberNumeric() As LineNumberNumericType Get Return Me.lineNumberNumericField @@ -37004,7 +37004,7 @@ Namespace Peppol.BISBilling30CreditNote Me.lineNumberNumericField = value End Set End Property - + ''' Public Property ParticipatingLocationsLocation() As LocationType1 Get @@ -37014,9 +37014,9 @@ Namespace Peppol.BISBilling30CreditNote Me.participatingLocationsLocationField = value End Set End Property - + ''' - _ + Public Property RetailPlannedImpact() As RetailPlannedImpactType() Get Return Me.retailPlannedImpactField @@ -37025,7 +37025,7 @@ Namespace Peppol.BISBilling30CreditNote Me.retailPlannedImpactField = value End Set End Property - + ''' Public Property SupplyItem() As ItemType Get @@ -37036,26 +37036,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RetailPlannedImpactType - + Private amountField As AmountType2 - + Private forecastPurposeCodeField As ForecastPurposeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private periodField As PeriodType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -37064,9 +37064,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property ForecastPurposeCode() As ForecastPurposeCodeType Get Return Me.forecastPurposeCodeField @@ -37075,9 +37075,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37086,7 +37086,7 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastTypeCodeField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -37097,26 +37097,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EventTacticType - + Private commentField As CommentType - + Private quantityField As QuantityType2 - + Private eventTacticEnumerationField As EventTacticEnumerationType - + Private periodField As PeriodType - + ''' - _ + Public Property Comment() As CommentType Get Return Me.commentField @@ -37125,9 +37125,9 @@ Namespace Peppol.BISBilling30CreditNote Me.commentField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -37136,7 +37136,7 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' Public Property EventTacticEnumeration() As EventTacticEnumerationType Get @@ -37146,7 +37146,7 @@ Namespace Peppol.BISBilling30CreditNote Me.eventTacticEnumerationField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -37157,26 +37157,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class EventTacticEnumerationType - + Private consumerIncentiveTacticTypeCodeField As ConsumerIncentiveTacticTypeCodeType - + Private displayTacticTypeCodeField As DisplayTacticTypeCodeType - + Private featureTacticTypeCodeField As FeatureTacticTypeCodeType - + Private tradeItemPackingLabelingTypeCodeField As TradeItemPackingLabelingTypeCodeType - + ''' - _ + Public Property ConsumerIncentiveTacticTypeCode() As ConsumerIncentiveTacticTypeCodeType Get Return Me.consumerIncentiveTacticTypeCodeField @@ -37185,9 +37185,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumerIncentiveTacticTypeCodeField = value End Set End Property - + ''' - _ + Public Property DisplayTacticTypeCode() As DisplayTacticTypeCodeType Get Return Me.displayTacticTypeCodeField @@ -37196,9 +37196,9 @@ Namespace Peppol.BISBilling30CreditNote Me.displayTacticTypeCodeField = value End Set End Property - + ''' - _ + Public Property FeatureTacticTypeCode() As FeatureTacticTypeCodeType Get Return Me.featureTacticTypeCodeField @@ -37207,9 +37207,9 @@ Namespace Peppol.BISBilling30CreditNote Me.featureTacticTypeCodeField = value End Set End Property - + ''' - _ + Public Property TradeItemPackingLabelingTypeCode() As TradeItemPackingLabelingTypeCodeType Get Return Me.tradeItemPackingLabelingTypeCodeField @@ -37219,42 +37219,42 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ExceptionCriteriaLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private thresholdValueComparisonCodeField As ThresholdValueComparisonCodeType - + Private thresholdQuantityField As ThresholdQuantityType - + Private exceptionStatusCodeField As ExceptionStatusCodeType - + Private collaborationPriorityCodeField As CollaborationPriorityCodeType - + Private exceptionResolutionCodeField As ExceptionResolutionCodeType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private effectivePeriodField As PeriodType - + Private supplyItemField() As ItemType - + Private forecastExceptionCriterionLineField As ForecastExceptionCriterionLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37263,9 +37263,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37274,9 +37274,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property ThresholdValueComparisonCode() As ThresholdValueComparisonCodeType Get Return Me.thresholdValueComparisonCodeField @@ -37285,9 +37285,9 @@ Namespace Peppol.BISBilling30CreditNote Me.thresholdValueComparisonCodeField = value End Set End Property - + ''' - _ + Public Property ThresholdQuantity() As ThresholdQuantityType Get Return Me.thresholdQuantityField @@ -37296,9 +37296,9 @@ Namespace Peppol.BISBilling30CreditNote Me.thresholdQuantityField = value End Set End Property - + ''' - _ + Public Property ExceptionStatusCode() As ExceptionStatusCodeType Get Return Me.exceptionStatusCodeField @@ -37307,9 +37307,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exceptionStatusCodeField = value End Set End Property - + ''' - _ + Public Property CollaborationPriorityCode() As CollaborationPriorityCodeType Get Return Me.collaborationPriorityCodeField @@ -37318,9 +37318,9 @@ Namespace Peppol.BISBilling30CreditNote Me.collaborationPriorityCodeField = value End Set End Property - + ''' - _ + Public Property ExceptionResolutionCode() As ExceptionResolutionCodeType Get Return Me.exceptionResolutionCodeField @@ -37329,9 +37329,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exceptionResolutionCodeField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -37340,9 +37340,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -37351,7 +37351,7 @@ Namespace Peppol.BISBilling30CreditNote Me.performanceMetricTypeCodeField = value End Set End Property - + ''' Public Property EffectivePeriod() As PeriodType Get @@ -37361,9 +37361,9 @@ Namespace Peppol.BISBilling30CreditNote Me.effectivePeriodField = value End Set End Property - + ''' - _ + Public Property SupplyItem() As ItemType() Get Return Me.supplyItemField @@ -37372,7 +37372,7 @@ Namespace Peppol.BISBilling30CreditNote Me.supplyItemField = value End Set End Property - + ''' Public Property ForecastExceptionCriterionLine() As ForecastExceptionCriterionLineType Get @@ -37383,28 +37383,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ForecastExceptionCriterionLineType - + Private forecastPurposeCodeField As ForecastPurposeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private comparisonDataSourceCodeField As ComparisonDataSourceCodeType - + Private dataSourceCodeField As DataSourceCodeType - + Private timeDeltaDaysQuantityField As TimeDeltaDaysQuantityType - + ''' - _ + Public Property ForecastPurposeCode() As ForecastPurposeCodeType Get Return Me.forecastPurposeCodeField @@ -37413,9 +37413,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37424,9 +37424,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastTypeCodeField = value End Set End Property - + ''' - _ + Public Property ComparisonDataSourceCode() As ComparisonDataSourceCodeType Get Return Me.comparisonDataSourceCodeField @@ -37435,9 +37435,9 @@ Namespace Peppol.BISBilling30CreditNote Me.comparisonDataSourceCodeField = value End Set End Property - + ''' - _ + Public Property DataSourceCode() As DataSourceCodeType Get Return Me.dataSourceCodeField @@ -37446,9 +37446,9 @@ Namespace Peppol.BISBilling30CreditNote Me.dataSourceCodeField = value End Set End Property - + ''' - _ + Public Property TimeDeltaDaysQuantity() As TimeDeltaDaysQuantityType Get Return Me.timeDeltaDaysQuantityField @@ -37458,48 +37458,48 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ExceptionNotificationLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private descriptionField() As DescriptionType - + Private exceptionStatusCodeField As ExceptionStatusCodeType - + Private collaborationPriorityCodeField As CollaborationPriorityCodeType - + Private resolutionCodeField As ResolutionCodeType - + Private comparedValueMeasureField As ComparedValueMeasureType - + Private sourceValueMeasureField As SourceValueMeasureType - + Private varianceQuantityField As VarianceQuantityType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private exceptionObservationPeriodField As PeriodType - + Private documentReferenceField() As DocumentReferenceType - + Private forecastExceptionField As ForecastExceptionType - + Private supplyItemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37508,9 +37508,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37519,9 +37519,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -37530,9 +37530,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ExceptionStatusCode() As ExceptionStatusCodeType Get Return Me.exceptionStatusCodeField @@ -37541,9 +37541,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exceptionStatusCodeField = value End Set End Property - + ''' - _ + Public Property CollaborationPriorityCode() As CollaborationPriorityCodeType Get Return Me.collaborationPriorityCodeField @@ -37552,9 +37552,9 @@ Namespace Peppol.BISBilling30CreditNote Me.collaborationPriorityCodeField = value End Set End Property - + ''' - _ + Public Property ResolutionCode() As ResolutionCodeType Get Return Me.resolutionCodeField @@ -37563,9 +37563,9 @@ Namespace Peppol.BISBilling30CreditNote Me.resolutionCodeField = value End Set End Property - + ''' - _ + Public Property ComparedValueMeasure() As ComparedValueMeasureType Get Return Me.comparedValueMeasureField @@ -37574,9 +37574,9 @@ Namespace Peppol.BISBilling30CreditNote Me.comparedValueMeasureField = value End Set End Property - + ''' - _ + Public Property SourceValueMeasure() As SourceValueMeasureType Get Return Me.sourceValueMeasureField @@ -37585,9 +37585,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sourceValueMeasureField = value End Set End Property - + ''' - _ + Public Property VarianceQuantity() As VarianceQuantityType Get Return Me.varianceQuantityField @@ -37596,9 +37596,9 @@ Namespace Peppol.BISBilling30CreditNote Me.varianceQuantityField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -37607,9 +37607,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -37618,7 +37618,7 @@ Namespace Peppol.BISBilling30CreditNote Me.performanceMetricTypeCodeField = value End Set End Property - + ''' Public Property ExceptionObservationPeriod() As PeriodType Get @@ -37628,9 +37628,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exceptionObservationPeriodField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -37639,7 +37639,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property ForecastException() As ForecastExceptionType Get @@ -37649,7 +37649,7 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastExceptionField = value End Set End Property - + ''' Public Property SupplyItem() As ItemType Get @@ -37660,34 +37660,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ForecastExceptionType - + Private forecastPurposeCodeField As ForecastPurposeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private dataSourceCodeField As DataSourceCodeType - + Private comparisonDataCodeField As ComparisonDataCodeType - + Private comparisonForecastIssueTimeField As ComparisonForecastIssueTimeType - + Private comparisonForecastIssueDateField As ComparisonForecastIssueDateType - + ''' - _ + Public Property ForecastPurposeCode() As ForecastPurposeCodeType Get Return Me.forecastPurposeCodeField @@ -37696,9 +37696,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37707,9 +37707,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastTypeCodeField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -37718,9 +37718,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -37729,9 +37729,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property DataSourceCode() As DataSourceCodeType Get Return Me.dataSourceCodeField @@ -37740,9 +37740,9 @@ Namespace Peppol.BISBilling30CreditNote Me.dataSourceCodeField = value End Set End Property - + ''' - _ + Public Property ComparisonDataCode() As ComparisonDataCodeType Get Return Me.comparisonDataCodeField @@ -37751,9 +37751,9 @@ Namespace Peppol.BISBilling30CreditNote Me.comparisonDataCodeField = value End Set End Property - + ''' - _ + Public Property ComparisonForecastIssueTime() As ComparisonForecastIssueTimeType Get Return Me.comparisonForecastIssueTimeField @@ -37762,9 +37762,9 @@ Namespace Peppol.BISBilling30CreditNote Me.comparisonForecastIssueTimeField = value End Set End Property - + ''' - _ + Public Property ComparisonForecastIssueDate() As ComparisonForecastIssueDateType Get Return Me.comparisonForecastIssueDateField @@ -37774,30 +37774,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ForecastLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private frozenDocumentIndicatorField As FrozenDocumentIndicatorType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private forecastPeriodField As PeriodType - + Private salesItemField As SalesItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37806,9 +37806,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37817,9 +37817,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property FrozenDocumentIndicator() As FrozenDocumentIndicatorType Get Return Me.frozenDocumentIndicatorField @@ -37828,9 +37828,9 @@ Namespace Peppol.BISBilling30CreditNote Me.frozenDocumentIndicatorField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37839,7 +37839,7 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastTypeCodeField = value End Set End Property - + ''' Public Property ForecastPeriod() As PeriodType Get @@ -37849,7 +37849,7 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastPeriodField = value End Set End Property - + ''' Public Property SalesItem() As SalesItemType Get @@ -37860,36 +37860,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ForecastRevisionLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private descriptionField() As DescriptionType - + Private revisedForecastLineIDField As RevisedForecastLineIDType - + Private sourceForecastIssueDateField As SourceForecastIssueDateType - + Private sourceForecastIssueTimeField As SourceForecastIssueTimeType - + Private adjustmentReasonCodeField As AdjustmentReasonCodeType - + Private forecastPeriodField As PeriodType - + Private salesItemField As SalesItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37898,9 +37898,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37909,9 +37909,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -37920,9 +37920,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property RevisedForecastLineID() As RevisedForecastLineIDType Get Return Me.revisedForecastLineIDField @@ -37931,9 +37931,9 @@ Namespace Peppol.BISBilling30CreditNote Me.revisedForecastLineIDField = value End Set End Property - + ''' - _ + Public Property SourceForecastIssueDate() As SourceForecastIssueDateType Get Return Me.sourceForecastIssueDateField @@ -37942,9 +37942,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sourceForecastIssueDateField = value End Set End Property - + ''' - _ + Public Property SourceForecastIssueTime() As SourceForecastIssueTimeType Get Return Me.sourceForecastIssueTimeField @@ -37953,9 +37953,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sourceForecastIssueTimeField = value End Set End Property - + ''' - _ + Public Property AdjustmentReasonCode() As AdjustmentReasonCodeType Get Return Me.adjustmentReasonCodeField @@ -37964,7 +37964,7 @@ Namespace Peppol.BISBilling30CreditNote Me.adjustmentReasonCodeField = value End Set End Property - + ''' Public Property ForecastPeriod() As PeriodType Get @@ -37974,7 +37974,7 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastPeriodField = value End Set End Property - + ''' Public Property SalesItem() As SalesItemType Get @@ -37985,30 +37985,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class FrameworkAgreementType - + Private expectedOperatorQuantityField As ExpectedOperatorQuantityType - + Private maximumOperatorQuantityField As MaximumOperatorQuantityType - + Private justificationField() As JustificationType - + Private frequencyField() As FrequencyType - + Private durationPeriodField As PeriodType - + Private subsequentProcessTenderRequirementField() As TenderRequirementType - + ''' - _ + Public Property ExpectedOperatorQuantity() As ExpectedOperatorQuantityType Get Return Me.expectedOperatorQuantityField @@ -38017,9 +38017,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expectedOperatorQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumOperatorQuantity() As MaximumOperatorQuantityType Get Return Me.maximumOperatorQuantityField @@ -38028,9 +38028,9 @@ Namespace Peppol.BISBilling30CreditNote Me.maximumOperatorQuantityField = value End Set End Property - + ''' - _ + Public Property Justification() As JustificationType() Get Return Me.justificationField @@ -38039,9 +38039,9 @@ Namespace Peppol.BISBilling30CreditNote Me.justificationField = value End Set End Property - + ''' - _ + Public Property Frequency() As FrequencyType() Get Return Me.frequencyField @@ -38050,7 +38050,7 @@ Namespace Peppol.BISBilling30CreditNote Me.frequencyField = value End Set End Property - + ''' Public Property DurationPeriod() As PeriodType Get @@ -38060,9 +38060,9 @@ Namespace Peppol.BISBilling30CreditNote Me.durationPeriodField = value End Set End Property - + ''' - _ + Public Property SubsequentProcessTenderRequirement() As TenderRequirementType() Get Return Me.subsequentProcessTenderRequirementField @@ -38072,32 +38072,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ImmobilizedSecurityType - + Private immobilizationCertificateIDField As ImmobilizationCertificateIDType - + Private securityIDField As SecurityIDType - + Private issueDateField As IssueDateType - + Private faceValueAmountField As FaceValueAmountType - + Private marketValueAmountField As MarketValueAmountType - + Private sharesNumberQuantityField As SharesNumberQuantityType - + Private issuerPartyField As PartyType - + ''' - _ + Public Property ImmobilizationCertificateID() As ImmobilizationCertificateIDType Get Return Me.immobilizationCertificateIDField @@ -38106,9 +38106,9 @@ Namespace Peppol.BISBilling30CreditNote Me.immobilizationCertificateIDField = value End Set End Property - + ''' - _ + Public Property SecurityID() As SecurityIDType Get Return Me.securityIDField @@ -38117,9 +38117,9 @@ Namespace Peppol.BISBilling30CreditNote Me.securityIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -38128,9 +38128,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property FaceValueAmount() As FaceValueAmountType Get Return Me.faceValueAmountField @@ -38139,9 +38139,9 @@ Namespace Peppol.BISBilling30CreditNote Me.faceValueAmountField = value End Set End Property - + ''' - _ + Public Property MarketValueAmount() As MarketValueAmountType Get Return Me.marketValueAmountField @@ -38150,9 +38150,9 @@ Namespace Peppol.BISBilling30CreditNote Me.marketValueAmountField = value End Set End Property - + ''' - _ + Public Property SharesNumberQuantity() As SharesNumberQuantityType Get Return Me.sharesNumberQuantityField @@ -38161,7 +38161,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sharesNumberQuantityField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -38172,28 +38172,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class InstructionForReturnsLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private manufacturerPartyField As PartyType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -38202,9 +38202,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38213,9 +38213,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -38224,7 +38224,7 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' Public Property ManufacturerParty() As PartyType Get @@ -38234,7 +38234,7 @@ Namespace Peppol.BISBilling30CreditNote Me.manufacturerPartyField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38245,34 +38245,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class InventoryReportLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private inventoryValueAmountField As InventoryValueAmountType - + Private availabilityDateField As AvailabilityDateType - + Private availabilityStatusCodeField As AvailabilityStatusCodeType - + Private itemField As ItemType - + Private inventoryLocationField As LocationType1 - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -38281,9 +38281,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38292,9 +38292,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -38303,9 +38303,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property InventoryValueAmount() As InventoryValueAmountType Get Return Me.inventoryValueAmountField @@ -38314,9 +38314,9 @@ Namespace Peppol.BISBilling30CreditNote Me.inventoryValueAmountField = value End Set End Property - + ''' - _ + Public Property AvailabilityDate() As AvailabilityDateType Get Return Me.availabilityDateField @@ -38325,9 +38325,9 @@ Namespace Peppol.BISBilling30CreditNote Me.availabilityDateField = value End Set End Property - + ''' - _ + Public Property AvailabilityStatusCode() As AvailabilityStatusCodeType Get Return Me.availabilityStatusCodeField @@ -38336,7 +38336,7 @@ Namespace Peppol.BISBilling30CreditNote Me.availabilityStatusCodeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38346,7 +38346,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' Public Property InventoryLocation() As LocationType1 Get @@ -38357,30 +38357,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemInformationRequestLineType - + Private timeFrequencyCodeField As TimeFrequencyCodeType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private periodField() As PeriodType - + Private salesItemField() As SalesItemType - + ''' - _ + Public Property TimeFrequencyCode() As TimeFrequencyCodeType Get Return Me.timeFrequencyCodeField @@ -38389,9 +38389,9 @@ Namespace Peppol.BISBilling30CreditNote Me.timeFrequencyCodeField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -38400,9 +38400,9 @@ Namespace Peppol.BISBilling30CreditNote Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -38411,9 +38411,9 @@ Namespace Peppol.BISBilling30CreditNote Me.forecastTypeCodeField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -38422,9 +38422,9 @@ Namespace Peppol.BISBilling30CreditNote Me.performanceMetricTypeCodeField = value End Set End Property - + ''' - _ + Public Property Period() As PeriodType() Get Return Me.periodField @@ -38433,9 +38433,9 @@ Namespace Peppol.BISBilling30CreditNote Me.periodField = value End Set End Property - + ''' - _ + Public Property SalesItem() As SalesItemType() Get Return Me.salesItemField @@ -38445,38 +38445,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ItemManagementProfileType - + Private frozenPeriodDaysNumericField As FrozenPeriodDaysNumericType - + Private minimumInventoryQuantityField As MinimumInventoryQuantityType - + Private multipleOrderQuantityField As MultipleOrderQuantityType - + Private orderIntervalDaysNumericField As OrderIntervalDaysNumericType - + Private replenishmentOwnerDescriptionField() As ReplenishmentOwnerDescriptionType - + Private targetServicePercentField As TargetServicePercentType - + Private targetInventoryQuantityField As TargetInventoryQuantityType - + Private effectivePeriodField As PeriodType - + Private itemField As ItemType - + Private itemLocationQuantityField As ItemLocationQuantityType - + ''' - _ + Public Property FrozenPeriodDaysNumeric() As FrozenPeriodDaysNumericType Get Return Me.frozenPeriodDaysNumericField @@ -38485,9 +38485,9 @@ Namespace Peppol.BISBilling30CreditNote Me.frozenPeriodDaysNumericField = value End Set End Property - + ''' - _ + Public Property MinimumInventoryQuantity() As MinimumInventoryQuantityType Get Return Me.minimumInventoryQuantityField @@ -38496,9 +38496,9 @@ Namespace Peppol.BISBilling30CreditNote Me.minimumInventoryQuantityField = value End Set End Property - + ''' - _ + Public Property MultipleOrderQuantity() As MultipleOrderQuantityType Get Return Me.multipleOrderQuantityField @@ -38507,9 +38507,9 @@ Namespace Peppol.BISBilling30CreditNote Me.multipleOrderQuantityField = value End Set End Property - + ''' - _ + Public Property OrderIntervalDaysNumeric() As OrderIntervalDaysNumericType Get Return Me.orderIntervalDaysNumericField @@ -38518,9 +38518,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderIntervalDaysNumericField = value End Set End Property - + ''' - _ + Public Property ReplenishmentOwnerDescription() As ReplenishmentOwnerDescriptionType() Get Return Me.replenishmentOwnerDescriptionField @@ -38529,9 +38529,9 @@ Namespace Peppol.BISBilling30CreditNote Me.replenishmentOwnerDescriptionField = value End Set End Property - + ''' - _ + Public Property TargetServicePercent() As TargetServicePercentType Get Return Me.targetServicePercentField @@ -38540,9 +38540,9 @@ Namespace Peppol.BISBilling30CreditNote Me.targetServicePercentField = value End Set End Property - + ''' - _ + Public Property TargetInventoryQuantity() As TargetInventoryQuantityType Get Return Me.targetInventoryQuantityField @@ -38551,7 +38551,7 @@ Namespace Peppol.BISBilling30CreditNote Me.targetInventoryQuantityField = value End Set End Property - + ''' Public Property EffectivePeriod() As PeriodType Get @@ -38561,7 +38561,7 @@ Namespace Peppol.BISBilling30CreditNote Me.effectivePeriodField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38571,7 +38571,7 @@ Namespace Peppol.BISBilling30CreditNote Me.itemField = value End Set End Property - + ''' Public Property ItemLocationQuantity() As ItemLocationQuantityType Get @@ -38582,24 +38582,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class OnAccountPaymentType - + Private estimatedConsumedQuantityField As EstimatedConsumedQuantityType - + Private noteField() As NoteType - + Private paymentTermsField() As PaymentTermsType - + ''' - _ + Public Property EstimatedConsumedQuantity() As EstimatedConsumedQuantityType Get Return Me.estimatedConsumedQuantityField @@ -38608,9 +38608,9 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedConsumedQuantityField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38619,9 +38619,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -38631,22 +38631,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class MiscellaneousEventType - + Private miscellaneousEventTypeCodeField As MiscellaneousEventTypeCodeType - + Private eventLineItemField() As EventLineItemType - + ''' - _ + Public Property MiscellaneousEventTypeCode() As MiscellaneousEventTypeCodeType Get Return Me.miscellaneousEventTypeCodeField @@ -38655,9 +38655,9 @@ Namespace Peppol.BISBilling30CreditNote Me.miscellaneousEventTypeCodeField = value End Set End Property - + ''' - _ + Public Property EventLineItem() As EventLineItemType() Get Return Me.eventLineItemField @@ -38667,30 +38667,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class NotificationRequirementType - + Private notificationTypeCodeField As NotificationTypeCodeType - + Private postEventNotificationDurationMeasureField As PostEventNotificationDurationMeasureType - + Private preEventNotificationDurationMeasureField As PreEventNotificationDurationMeasureType - + Private notifyPartyField() As PartyType - + Private notificationPeriodField() As PeriodType - + Private notificationLocationField() As LocationType1 - + ''' - _ + Public Property NotificationTypeCode() As NotificationTypeCodeType Get Return Me.notificationTypeCodeField @@ -38699,9 +38699,9 @@ Namespace Peppol.BISBilling30CreditNote Me.notificationTypeCodeField = value End Set End Property - + ''' - _ + Public Property PostEventNotificationDurationMeasure() As PostEventNotificationDurationMeasureType Get Return Me.postEventNotificationDurationMeasureField @@ -38710,9 +38710,9 @@ Namespace Peppol.BISBilling30CreditNote Me.postEventNotificationDurationMeasureField = value End Set End Property - + ''' - _ + Public Property PreEventNotificationDurationMeasure() As PreEventNotificationDurationMeasureType Get Return Me.preEventNotificationDurationMeasureField @@ -38721,9 +38721,9 @@ Namespace Peppol.BISBilling30CreditNote Me.preEventNotificationDurationMeasureField = value End Set End Property - + ''' - _ + Public Property NotifyParty() As PartyType() Get Return Me.notifyPartyField @@ -38732,9 +38732,9 @@ Namespace Peppol.BISBilling30CreditNote Me.notifyPartyField = value End Set End Property - + ''' - _ + Public Property NotificationPeriod() As PeriodType() Get Return Me.notificationPeriodField @@ -38743,9 +38743,9 @@ Namespace Peppol.BISBilling30CreditNote Me.notificationPeriodField = value End Set End Property - + ''' - _ + Public Property NotificationLocation() As LocationType1() Get Return Me.notificationLocationField @@ -38755,38 +38755,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class OrderLineType - + Private substitutionStatusCodeField As SubstitutionStatusCodeType - + Private noteField() As NoteType - + Private lineItemField As LineItemType - + Private sellerProposedSubstituteLineItemField() As LineItemType - + Private sellerSubstitutedLineItemField() As LineItemType - + Private buyerProposedSubstituteLineItemField() As LineItemType - + Private catalogueLineReferenceField As LineReferenceType - + Private quotationLineReferenceField As LineReferenceType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private documentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property SubstitutionStatusCode() As SubstitutionStatusCodeType Get Return Me.substitutionStatusCodeField @@ -38795,9 +38795,9 @@ Namespace Peppol.BISBilling30CreditNote Me.substitutionStatusCodeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38806,7 +38806,7 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' Public Property LineItem() As LineItemType Get @@ -38816,9 +38816,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineItemField = value End Set End Property - + ''' - _ + Public Property SellerProposedSubstituteLineItem() As LineItemType() Get Return Me.sellerProposedSubstituteLineItemField @@ -38827,9 +38827,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerProposedSubstituteLineItemField = value End Set End Property - + ''' - _ + Public Property SellerSubstitutedLineItem() As LineItemType() Get Return Me.sellerSubstitutedLineItemField @@ -38838,9 +38838,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSubstitutedLineItemField = value End Set End Property - + ''' - _ + Public Property BuyerProposedSubstituteLineItem() As LineItemType() Get Return Me.buyerProposedSubstituteLineItemField @@ -38849,7 +38849,7 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerProposedSubstituteLineItemField = value End Set End Property - + ''' Public Property CatalogueLineReference() As LineReferenceType Get @@ -38859,7 +38859,7 @@ Namespace Peppol.BISBilling30CreditNote Me.catalogueLineReferenceField = value End Set End Property - + ''' Public Property QuotationLineReference() As LineReferenceType Get @@ -38869,9 +38869,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quotationLineReferenceField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -38880,9 +38880,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -38892,30 +38892,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PerformanceDataLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private performanceValueQuantityField As PerformanceValueQuantityType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private periodField As PeriodType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -38924,9 +38924,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38935,9 +38935,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property PerformanceValueQuantity() As PerformanceValueQuantityType Get Return Me.performanceValueQuantityField @@ -38946,9 +38946,9 @@ Namespace Peppol.BISBilling30CreditNote Me.performanceValueQuantityField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -38957,7 +38957,7 @@ Namespace Peppol.BISBilling30CreditNote Me.performanceMetricTypeCodeField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -38967,7 +38967,7 @@ Namespace Peppol.BISBilling30CreditNote Me.periodField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38978,26 +38978,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ProcessJustificationType - + Private previousCancellationReasonCodeField As PreviousCancellationReasonCodeType - + Private processReasonCodeField As ProcessReasonCodeType - + Private processReasonField() As ProcessReasonType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property PreviousCancellationReasonCode() As PreviousCancellationReasonCodeType Get Return Me.previousCancellationReasonCodeField @@ -39006,9 +39006,9 @@ Namespace Peppol.BISBilling30CreditNote Me.previousCancellationReasonCodeField = value End Set End Property - + ''' - _ + Public Property ProcessReasonCode() As ProcessReasonCodeType Get Return Me.processReasonCodeField @@ -39017,9 +39017,9 @@ Namespace Peppol.BISBilling30CreditNote Me.processReasonCodeField = value End Set End Property - + ''' - _ + Public Property ProcessReason() As ProcessReasonType() Get Return Me.processReasonField @@ -39028,9 +39028,9 @@ Namespace Peppol.BISBilling30CreditNote Me.processReasonField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -39040,26 +39040,26 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ProjectReferenceType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private workPhaseReferenceField() As WorkPhaseReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39068,9 +39068,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -39079,9 +39079,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -39090,9 +39090,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property WorkPhaseReference() As WorkPhaseReferenceType() Get Return Me.workPhaseReferenceField @@ -39102,32 +39102,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class WorkPhaseReferenceType - + Private idField As IDType - + Private workPhaseCodeField As WorkPhaseCodeType - + Private workPhaseField() As WorkPhaseType - + Private progressPercentField As ProgressPercentType - + Private startDateField As StartDateType - + Private endDateField As EndDateType - + Private workOrderDocumentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39136,9 +39136,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property WorkPhaseCode() As WorkPhaseCodeType Get Return Me.workPhaseCodeField @@ -39147,9 +39147,9 @@ Namespace Peppol.BISBilling30CreditNote Me.workPhaseCodeField = value End Set End Property - + ''' - _ + Public Property WorkPhase() As WorkPhaseType() Get Return Me.workPhaseField @@ -39158,9 +39158,9 @@ Namespace Peppol.BISBilling30CreditNote Me.workPhaseField = value End Set End Property - + ''' - _ + Public Property ProgressPercent() As ProgressPercentType Get Return Me.progressPercentField @@ -39169,9 +39169,9 @@ Namespace Peppol.BISBilling30CreditNote Me.progressPercentField = value End Set End Property - + ''' - _ + Public Property StartDate() As StartDateType Get Return Me.startDateField @@ -39180,9 +39180,9 @@ Namespace Peppol.BISBilling30CreditNote Me.startDateField = value End Set End Property - + ''' - _ + Public Property EndDate() As EndDateType Get Return Me.endDateField @@ -39191,9 +39191,9 @@ Namespace Peppol.BISBilling30CreditNote Me.endDateField = value End Set End Property - + ''' - _ + Public Property WorkOrderDocumentReference() As DocumentReferenceType() Get Return Me.workOrderDocumentReferenceField @@ -39203,28 +39203,28 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PromotionalEventType - + Private promotionalEventTypeCodeField As PromotionalEventTypeCodeType - + Private submissionDateField As SubmissionDateType - + Private firstShipmentAvailibilityDateField As FirstShipmentAvailibilityDateType - + Private latestProposalAcceptanceDateField As LatestProposalAcceptanceDateType - + Private promotionalSpecificationField() As PromotionalSpecificationType - + ''' - _ + Public Property PromotionalEventTypeCode() As PromotionalEventTypeCodeType Get Return Me.promotionalEventTypeCodeField @@ -39233,9 +39233,9 @@ Namespace Peppol.BISBilling30CreditNote Me.promotionalEventTypeCodeField = value End Set End Property - + ''' - _ + Public Property SubmissionDate() As SubmissionDateType Get Return Me.submissionDateField @@ -39244,9 +39244,9 @@ Namespace Peppol.BISBilling30CreditNote Me.submissionDateField = value End Set End Property - + ''' - _ + Public Property FirstShipmentAvailibilityDate() As FirstShipmentAvailibilityDateType Get Return Me.firstShipmentAvailibilityDateField @@ -39255,9 +39255,9 @@ Namespace Peppol.BISBilling30CreditNote Me.firstShipmentAvailibilityDateField = value End Set End Property - + ''' - _ + Public Property LatestProposalAcceptanceDate() As LatestProposalAcceptanceDateType Get Return Me.latestProposalAcceptanceDateField @@ -39266,9 +39266,9 @@ Namespace Peppol.BISBilling30CreditNote Me.latestProposalAcceptanceDateField = value End Set End Property - + ''' - _ + Public Property PromotionalSpecification() As PromotionalSpecificationType() Get Return Me.promotionalSpecificationField @@ -39278,24 +39278,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PromotionalSpecificationType - + Private specificationIDField As SpecificationIDType - + Private promotionalEventLineItemField() As PromotionalEventLineItemType - + Private eventTacticField() As EventTacticType - + ''' - _ + Public Property SpecificationID() As SpecificationIDType Get Return Me.specificationIDField @@ -39304,9 +39304,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specificationIDField = value End Set End Property - + ''' - _ + Public Property PromotionalEventLineItem() As PromotionalEventLineItemType() Get Return Me.promotionalEventLineItemField @@ -39315,9 +39315,9 @@ Namespace Peppol.BISBilling30CreditNote Me.promotionalEventLineItemField = value End Set End Property - + ''' - _ + Public Property EventTactic() As EventTacticType() Get Return Me.eventTacticField @@ -39327,22 +39327,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class PromotionalEventLineItemType - + Private amountField As AmountType2 - + Private eventLineItemField As EventLineItemType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -39351,7 +39351,7 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' Public Property EventLineItem() As EventLineItemType Get @@ -39362,30 +39362,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class QualificationResolutionType - + Private admissionCodeField As AdmissionCodeType - + Private exclusionReasonField() As ExclusionReasonType - + Private resolutionField() As ResolutionType - + Private resolutionDateField As ResolutionDateType - + Private resolutionTimeField As ResolutionTimeType - + Private procurementProjectLotField As ProcurementProjectLotType - + ''' - _ + Public Property AdmissionCode() As AdmissionCodeType Get Return Me.admissionCodeField @@ -39394,9 +39394,9 @@ Namespace Peppol.BISBilling30CreditNote Me.admissionCodeField = value End Set End Property - + ''' - _ + Public Property ExclusionReason() As ExclusionReasonType() Get Return Me.exclusionReasonField @@ -39405,9 +39405,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exclusionReasonField = value End Set End Property - + ''' - _ + Public Property Resolution() As ResolutionType() Get Return Me.resolutionField @@ -39416,9 +39416,9 @@ Namespace Peppol.BISBilling30CreditNote Me.resolutionField = value End Set End Property - + ''' - _ + Public Property ResolutionDate() As ResolutionDateType Get Return Me.resolutionDateField @@ -39427,9 +39427,9 @@ Namespace Peppol.BISBilling30CreditNote Me.resolutionDateField = value End Set End Property - + ''' - _ + Public Property ResolutionTime() As ResolutionTimeType Get Return Me.resolutionTimeField @@ -39438,7 +39438,7 @@ Namespace Peppol.BISBilling30CreditNote Me.resolutionTimeField = value End Set End Property - + ''' Public Property ProcurementProjectLot() As ProcurementProjectLotType Get @@ -39449,40 +39449,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class QuotationLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private lineExtensionAmountField As LineExtensionAmountType - + Private totalTaxAmountField As TotalTaxAmountType - + Private requestForQuotationLineIDField As RequestForQuotationLineIDType - + Private documentReferenceField() As DocumentReferenceType - + Private lineItemField As LineItemType - + Private sellerProposedSubstituteLineItemField() As LineItemType - + Private alternativeLineItemField() As LineItemType - + Private requestLineReferenceField As LineReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39491,9 +39491,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -39502,9 +39502,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -39513,9 +39513,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -39524,9 +39524,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaxAmount() As TotalTaxAmountType Get Return Me.totalTaxAmountField @@ -39535,9 +39535,9 @@ Namespace Peppol.BISBilling30CreditNote Me.totalTaxAmountField = value End Set End Property - + ''' - _ + Public Property RequestForQuotationLineID() As RequestForQuotationLineIDType Get Return Me.requestForQuotationLineIDField @@ -39546,9 +39546,9 @@ Namespace Peppol.BISBilling30CreditNote Me.requestForQuotationLineIDField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -39557,7 +39557,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property LineItem() As LineItemType Get @@ -39567,9 +39567,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineItemField = value End Set End Property - + ''' - _ + Public Property SellerProposedSubstituteLineItem() As LineItemType() Get Return Me.sellerProposedSubstituteLineItemField @@ -39578,9 +39578,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerProposedSubstituteLineItemField = value End Set End Property - + ''' - _ + Public Property AlternativeLineItem() As LineItemType() Get Return Me.alternativeLineItemField @@ -39589,7 +39589,7 @@ Namespace Peppol.BISBilling30CreditNote Me.alternativeLineItemField = value End Set End Property - + ''' Public Property RequestLineReference() As LineReferenceType Get @@ -39600,46 +39600,46 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class ReminderLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private uUIDField As UUIDType - + Private balanceBroughtForwardIndicatorField As BalanceBroughtForwardIndicatorType - + Private debitLineAmountField As DebitLineAmountType - + Private creditLineAmountField As CreditLineAmountType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private penaltySurchargePercentField As PenaltySurchargePercentType - + Private amountField As AmountType2 - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private reminderPeriodField() As PeriodType - + Private billingReferenceField() As BillingReferenceType - + Private exchangeRateField As ExchangeRateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39648,9 +39648,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -39659,9 +39659,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -39670,9 +39670,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property BalanceBroughtForwardIndicator() As BalanceBroughtForwardIndicatorType Get Return Me.balanceBroughtForwardIndicatorField @@ -39681,9 +39681,9 @@ Namespace Peppol.BISBilling30CreditNote Me.balanceBroughtForwardIndicatorField = value End Set End Property - + ''' - _ + Public Property DebitLineAmount() As DebitLineAmountType Get Return Me.debitLineAmountField @@ -39692,9 +39692,9 @@ Namespace Peppol.BISBilling30CreditNote Me.debitLineAmountField = value End Set End Property - + ''' - _ + Public Property CreditLineAmount() As CreditLineAmountType Get Return Me.creditLineAmountField @@ -39703,9 +39703,9 @@ Namespace Peppol.BISBilling30CreditNote Me.creditLineAmountField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -39714,9 +39714,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -39725,9 +39725,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PenaltySurchargePercent() As PenaltySurchargePercentType Get Return Me.penaltySurchargePercentField @@ -39736,9 +39736,9 @@ Namespace Peppol.BISBilling30CreditNote Me.penaltySurchargePercentField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -39747,9 +39747,9 @@ Namespace Peppol.BISBilling30CreditNote Me.amountField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -39758,9 +39758,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ReminderPeriod() As PeriodType() Get Return Me.reminderPeriodField @@ -39769,9 +39769,9 @@ Namespace Peppol.BISBilling30CreditNote Me.reminderPeriodField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -39780,7 +39780,7 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -39791,54 +39791,54 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RemittanceAdviceLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private uUIDField As UUIDType - + Private debitLineAmountField As DebitLineAmountType - + Private creditLineAmountField As CreditLineAmountType - + Private balanceAmountField As BalanceAmountType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private invoicingPartyReferenceField As InvoicingPartyReferenceType - + Private accountingSupplierPartyField As SupplierPartyType - + Private accountingCustomerPartyField As CustomerPartyType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private originatorCustomerPartyField As CustomerPartyType - + Private payeePartyField As PartyType - + Private invoicePeriodField() As PeriodType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private exchangeRateField As ExchangeRateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39847,9 +39847,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -39858,9 +39858,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -39869,9 +39869,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property DebitLineAmount() As DebitLineAmountType Get Return Me.debitLineAmountField @@ -39880,9 +39880,9 @@ Namespace Peppol.BISBilling30CreditNote Me.debitLineAmountField = value End Set End Property - + ''' - _ + Public Property CreditLineAmount() As CreditLineAmountType Get Return Me.creditLineAmountField @@ -39891,9 +39891,9 @@ Namespace Peppol.BISBilling30CreditNote Me.creditLineAmountField = value End Set End Property - + ''' - _ + Public Property BalanceAmount() As BalanceAmountType Get Return Me.balanceAmountField @@ -39902,9 +39902,9 @@ Namespace Peppol.BISBilling30CreditNote Me.balanceAmountField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -39913,9 +39913,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property InvoicingPartyReference() As InvoicingPartyReferenceType Get Return Me.invoicingPartyReferenceField @@ -39924,7 +39924,7 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicingPartyReferenceField = value End Set End Property - + ''' Public Property AccountingSupplierParty() As SupplierPartyType Get @@ -39934,7 +39934,7 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingSupplierPartyField = value End Set End Property - + ''' Public Property AccountingCustomerParty() As CustomerPartyType Get @@ -39944,7 +39944,7 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCustomerPartyField = value End Set End Property - + ''' Public Property BuyerCustomerParty() As CustomerPartyType Get @@ -39954,7 +39954,7 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -39964,7 +39964,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property OriginatorCustomerParty() As CustomerPartyType Get @@ -39974,7 +39974,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originatorCustomerPartyField = value End Set End Property - + ''' Public Property PayeeParty() As PartyType Get @@ -39984,9 +39984,9 @@ Namespace Peppol.BISBilling30CreditNote Me.payeePartyField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -39995,9 +39995,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -40006,9 +40006,9 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -40017,7 +40017,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -40028,34 +40028,34 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class RequestForQuotationLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private optionalLineItemIndicatorField As OptionalLineItemIndicatorType - + Private privacyCodeField As PrivacyCodeType - + Private securityClassificationCodeField As SecurityClassificationCodeType - + Private documentReferenceField() As DocumentReferenceType - + Private lineItemField As LineItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -40064,9 +40064,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -40075,9 +40075,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40086,9 +40086,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property OptionalLineItemIndicator() As OptionalLineItemIndicatorType Get Return Me.optionalLineItemIndicatorField @@ -40097,9 +40097,9 @@ Namespace Peppol.BISBilling30CreditNote Me.optionalLineItemIndicatorField = value End Set End Property - + ''' - _ + Public Property PrivacyCode() As PrivacyCodeType Get Return Me.privacyCodeField @@ -40108,9 +40108,9 @@ Namespace Peppol.BISBilling30CreditNote Me.privacyCodeField = value End Set End Property - + ''' - _ + Public Property SecurityClassificationCode() As SecurityClassificationCodeType Get Return Me.securityClassificationCodeField @@ -40119,9 +40119,9 @@ Namespace Peppol.BISBilling30CreditNote Me.securityClassificationCodeField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -40130,7 +40130,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property LineItem() As LineItemType Get @@ -40141,62 +40141,62 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class StatementLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private uUIDField As UUIDType - + Private balanceBroughtForwardIndicatorField As BalanceBroughtForwardIndicatorType - + Private debitLineAmountField As DebitLineAmountType - + Private creditLineAmountField As CreditLineAmountType - + Private balanceAmountField As BalanceAmountType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private paymentMeansField As PaymentMeansType - + Private paymentTermsField() As PaymentTermsType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private originatorCustomerPartyField As CustomerPartyType - + Private accountingCustomerPartyField As CustomerPartyType - + Private accountingSupplierPartyField As SupplierPartyType - + Private payeePartyField As PartyType - + Private invoicePeriodField() As PeriodType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private exchangeRateField As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private collectedPaymentField() As PaymentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -40205,9 +40205,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40216,9 +40216,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -40227,9 +40227,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property BalanceBroughtForwardIndicator() As BalanceBroughtForwardIndicatorType Get Return Me.balanceBroughtForwardIndicatorField @@ -40238,9 +40238,9 @@ Namespace Peppol.BISBilling30CreditNote Me.balanceBroughtForwardIndicatorField = value End Set End Property - + ''' - _ + Public Property DebitLineAmount() As DebitLineAmountType Get Return Me.debitLineAmountField @@ -40249,9 +40249,9 @@ Namespace Peppol.BISBilling30CreditNote Me.debitLineAmountField = value End Set End Property - + ''' - _ + Public Property CreditLineAmount() As CreditLineAmountType Get Return Me.creditLineAmountField @@ -40260,9 +40260,9 @@ Namespace Peppol.BISBilling30CreditNote Me.creditLineAmountField = value End Set End Property - + ''' - _ + Public Property BalanceAmount() As BalanceAmountType Get Return Me.balanceAmountField @@ -40271,9 +40271,9 @@ Namespace Peppol.BISBilling30CreditNote Me.balanceAmountField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -40282,7 +40282,7 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentPurposeCodeField = value End Set End Property - + ''' Public Property PaymentMeans() As PaymentMeansType Get @@ -40292,9 +40292,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentMeansField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -40303,7 +40303,7 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' Public Property BuyerCustomerParty() As CustomerPartyType Get @@ -40313,7 +40313,7 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -40323,7 +40323,7 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property OriginatorCustomerParty() As CustomerPartyType Get @@ -40333,7 +40333,7 @@ Namespace Peppol.BISBilling30CreditNote Me.originatorCustomerPartyField = value End Set End Property - + ''' Public Property AccountingCustomerParty() As CustomerPartyType Get @@ -40343,7 +40343,7 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCustomerPartyField = value End Set End Property - + ''' Public Property AccountingSupplierParty() As SupplierPartyType Get @@ -40353,7 +40353,7 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingSupplierPartyField = value End Set End Property - + ''' Public Property PayeeParty() As PartyType Get @@ -40363,9 +40363,9 @@ Namespace Peppol.BISBilling30CreditNote Me.payeePartyField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -40374,9 +40374,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -40385,9 +40385,9 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -40396,7 +40396,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentReferenceField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -40406,9 +40406,9 @@ Namespace Peppol.BISBilling30CreditNote Me.exchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -40417,9 +40417,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property CollectedPayment() As PaymentType() Get Return Me.collectedPaymentField @@ -40429,32 +40429,32 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class StockAvailabilityReportLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private valueAmountField As ValueAmountType - + Private availabilityDateField As AvailabilityDateType - + Private availabilityStatusCodeField As AvailabilityStatusCodeType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -40463,9 +40463,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40474,9 +40474,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -40485,9 +40485,9 @@ Namespace Peppol.BISBilling30CreditNote Me.quantityField = value End Set End Property - + ''' - _ + Public Property ValueAmount() As ValueAmountType Get Return Me.valueAmountField @@ -40496,9 +40496,9 @@ Namespace Peppol.BISBilling30CreditNote Me.valueAmountField = value End Set End Property - + ''' - _ + Public Property AvailabilityDate() As AvailabilityDateType Get Return Me.availabilityDateField @@ -40507,9 +40507,9 @@ Namespace Peppol.BISBilling30CreditNote Me.availabilityDateField = value End Set End Property - + ''' - _ + Public Property AvailabilityStatusCode() As AvailabilityStatusCodeType Get Return Me.availabilityStatusCodeField @@ -40518,7 +40518,7 @@ Namespace Peppol.BISBilling30CreditNote Me.availabilityStatusCodeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -40529,36 +40529,36 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SubscriberConsumptionType - + Private consumptionIDField As ConsumptionIDType - + Private specificationTypeCodeField As SpecificationTypeCodeType - + Private noteField() As NoteType - + Private totalMeteredQuantityField As TotalMeteredQuantityType - + Private subscriberPartyField As PartyType - + Private utilityConsumptionPointField As ConsumptionPointType - + Private onAccountPaymentField() As OnAccountPaymentType - + Private consumptionField As ConsumptionType - + Private supplierConsumptionField() As SupplierConsumptionType - + ''' - _ + Public Property ConsumptionID() As ConsumptionIDType Get Return Me.consumptionIDField @@ -40567,9 +40567,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionIDField = value End Set End Property - + ''' - _ + Public Property SpecificationTypeCode() As SpecificationTypeCodeType Get Return Me.specificationTypeCodeField @@ -40578,9 +40578,9 @@ Namespace Peppol.BISBilling30CreditNote Me.specificationTypeCodeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40589,9 +40589,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property TotalMeteredQuantity() As TotalMeteredQuantityType Get Return Me.totalMeteredQuantityField @@ -40600,7 +40600,7 @@ Namespace Peppol.BISBilling30CreditNote Me.totalMeteredQuantityField = value End Set End Property - + ''' Public Property SubscriberParty() As PartyType Get @@ -40610,7 +40610,7 @@ Namespace Peppol.BISBilling30CreditNote Me.subscriberPartyField = value End Set End Property - + ''' Public Property UtilityConsumptionPoint() As ConsumptionPointType Get @@ -40620,9 +40620,9 @@ Namespace Peppol.BISBilling30CreditNote Me.utilityConsumptionPointField = value End Set End Property - + ''' - _ + Public Property OnAccountPayment() As OnAccountPaymentType() Get Return Me.onAccountPaymentField @@ -40631,7 +40631,7 @@ Namespace Peppol.BISBilling30CreditNote Me.onAccountPaymentField = value End Set End Property - + ''' Public Property Consumption() As ConsumptionType Get @@ -40641,9 +40641,9 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionField = value End Set End Property - + ''' - _ + Public Property SupplierConsumption() As SupplierConsumptionType() Get Return Me.supplierConsumptionField @@ -40653,30 +40653,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class SupplierConsumptionType - + Private descriptionField() As DescriptionType - + Private utilitySupplierPartyField As PartyType - + Private utilityCustomerPartyField As PartyType - + Private consumptionField As ConsumptionType - + Private contractField As ContractType - + Private consumptionLineField() As ConsumptionLineType - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -40685,7 +40685,7 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' Public Property UtilitySupplierParty() As PartyType Get @@ -40695,7 +40695,7 @@ Namespace Peppol.BISBilling30CreditNote Me.utilitySupplierPartyField = value End Set End Property - + ''' Public Property UtilityCustomerParty() As PartyType Get @@ -40705,7 +40705,7 @@ Namespace Peppol.BISBilling30CreditNote Me.utilityCustomerPartyField = value End Set End Property - + ''' Public Property Consumption() As ConsumptionType Get @@ -40715,7 +40715,7 @@ Namespace Peppol.BISBilling30CreditNote Me.consumptionField = value End Set End Property - + ''' Public Property Contract() As ContractType Get @@ -40725,9 +40725,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractField = value End Set End Property - + ''' - _ + Public Property ConsumptionLine() As ConsumptionLineType() Get Return Me.consumptionLineField @@ -40737,50 +40737,50 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderResultType - + Private tenderResultCodeField As TenderResultCodeType - + Private descriptionField() As DescriptionType - + Private advertisementAmountField As AdvertisementAmountType - + Private awardDateField As AwardDateType - + Private awardTimeField As AwardTimeType - + Private receivedTenderQuantityField As ReceivedTenderQuantityType - + Private lowerTenderAmountField As LowerTenderAmountType - + Private higherTenderAmountField As HigherTenderAmountType - + Private startDateField As StartDateType - + Private receivedElectronicTenderQuantityField As ReceivedElectronicTenderQuantityType - + Private receivedForeignTenderQuantityField As ReceivedForeignTenderQuantityType - + Private contractField As ContractType - + Private awardedTenderedProjectField As TenderedProjectType - + Private contractFormalizationPeriodField As PeriodType - + Private subcontractTermsField() As SubcontractTermsType - + Private winningPartyField() As WinningPartyType - + ''' - _ + Public Property TenderResultCode() As TenderResultCodeType Get Return Me.tenderResultCodeField @@ -40789,9 +40789,9 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderResultCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -40800,9 +40800,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property AdvertisementAmount() As AdvertisementAmountType Get Return Me.advertisementAmountField @@ -40811,9 +40811,9 @@ Namespace Peppol.BISBilling30CreditNote Me.advertisementAmountField = value End Set End Property - + ''' - _ + Public Property AwardDate() As AwardDateType Get Return Me.awardDateField @@ -40822,9 +40822,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardDateField = value End Set End Property - + ''' - _ + Public Property AwardTime() As AwardTimeType Get Return Me.awardTimeField @@ -40833,9 +40833,9 @@ Namespace Peppol.BISBilling30CreditNote Me.awardTimeField = value End Set End Property - + ''' - _ + Public Property ReceivedTenderQuantity() As ReceivedTenderQuantityType Get Return Me.receivedTenderQuantityField @@ -40844,9 +40844,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedTenderQuantityField = value End Set End Property - + ''' - _ + Public Property LowerTenderAmount() As LowerTenderAmountType Get Return Me.lowerTenderAmountField @@ -40855,9 +40855,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lowerTenderAmountField = value End Set End Property - + ''' - _ + Public Property HigherTenderAmount() As HigherTenderAmountType Get Return Me.higherTenderAmountField @@ -40866,9 +40866,9 @@ Namespace Peppol.BISBilling30CreditNote Me.higherTenderAmountField = value End Set End Property - + ''' - _ + Public Property StartDate() As StartDateType Get Return Me.startDateField @@ -40877,9 +40877,9 @@ Namespace Peppol.BISBilling30CreditNote Me.startDateField = value End Set End Property - + ''' - _ + Public Property ReceivedElectronicTenderQuantity() As ReceivedElectronicTenderQuantityType Get Return Me.receivedElectronicTenderQuantityField @@ -40888,9 +40888,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedElectronicTenderQuantityField = value End Set End Property - + ''' - _ + Public Property ReceivedForeignTenderQuantity() As ReceivedForeignTenderQuantityType Get Return Me.receivedForeignTenderQuantityField @@ -40899,7 +40899,7 @@ Namespace Peppol.BISBilling30CreditNote Me.receivedForeignTenderQuantityField = value End Set End Property - + ''' Public Property Contract() As ContractType Get @@ -40909,7 +40909,7 @@ Namespace Peppol.BISBilling30CreditNote Me.contractField = value End Set End Property - + ''' Public Property AwardedTenderedProject() As TenderedProjectType Get @@ -40919,7 +40919,7 @@ Namespace Peppol.BISBilling30CreditNote Me.awardedTenderedProjectField = value End Set End Property - + ''' Public Property ContractFormalizationPeriod() As PeriodType Get @@ -40929,9 +40929,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractFormalizationPeriodField = value End Set End Property - + ''' - _ + Public Property SubcontractTerms() As SubcontractTermsType() Get Return Me.subcontractTermsField @@ -40940,9 +40940,9 @@ Namespace Peppol.BISBilling30CreditNote Me.subcontractTermsField = value End Set End Property - + ''' - _ + Public Property WinningParty() As WinningPartyType() Get Return Me.winningPartyField @@ -40952,22 +40952,22 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class WinningPartyType - + Private rankField As RankType - + Private partyField As PartyType - + ''' - _ + Public Property Rank() As RankType Get Return Me.rankField @@ -40976,7 +40976,7 @@ Namespace Peppol.BISBilling30CreditNote Me.rankField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -40987,24 +40987,24 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TendererPartyQualificationType - + Private interestedProcurementProjectLotField() As ProcurementProjectLotType - + Private mainQualifyingPartyField As QualifyingPartyType - + Private additionalQualifyingPartyField() As QualifyingPartyType - + ''' - _ + Public Property InterestedProcurementProjectLot() As ProcurementProjectLotType() Get Return Me.interestedProcurementProjectLotField @@ -41013,7 +41013,7 @@ Namespace Peppol.BISBilling30CreditNote Me.interestedProcurementProjectLotField = value End Set End Property - + ''' Public Property MainQualifyingParty() As QualifyingPartyType Get @@ -41023,9 +41023,9 @@ Namespace Peppol.BISBilling30CreditNote Me.mainQualifyingPartyField = value End Set End Property - + ''' - _ + Public Property AdditionalQualifyingParty() As QualifyingPartyType() Get Return Me.additionalQualifyingPartyField @@ -41035,64 +41035,64 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TenderingProcessType - + Private idField As IDType - + Private originalContractingSystemIDField As OriginalContractingSystemIDType - + Private descriptionField() As DescriptionType - + Private negotiationDescriptionField() As NegotiationDescriptionType - + Private procedureCodeField As ProcedureCodeType - + Private urgencyCodeField As UrgencyCodeType - + Private expenseCodeField As ExpenseCodeType - + Private partPresentationCodeField As PartPresentationCodeType - + Private contractingSystemCodeField As ContractingSystemCodeType - + Private submissionMethodCodeField As SubmissionMethodCodeType - + Private candidateReductionConstraintIndicatorField As CandidateReductionConstraintIndicatorType - + Private governmentAgreementConstraintIndicatorField As GovernmentAgreementConstraintIndicatorType - + Private documentAvailabilityPeriodField As PeriodType - + Private tenderSubmissionDeadlinePeriodField As PeriodType - + Private invitationSubmissionPeriodField As PeriodType - + Private participationRequestReceptionPeriodField As PeriodType - + Private noticeDocumentReferenceField() As DocumentReferenceType - + Private additionalDocumentReferenceField() As DocumentReferenceType - + Private processJustificationField() As ProcessJustificationType - + Private economicOperatorShortListField As EconomicOperatorShortListType - + Private openTenderEventField() As EventType - + Private auctionTermsField As AuctionTermsType - + Private frameworkAgreementField As FrameworkAgreementType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -41101,9 +41101,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property OriginalContractingSystemID() As OriginalContractingSystemIDType Get Return Me.originalContractingSystemIDField @@ -41112,9 +41112,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originalContractingSystemIDField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -41123,9 +41123,9 @@ Namespace Peppol.BISBilling30CreditNote Me.descriptionField = value End Set End Property - + ''' - _ + Public Property NegotiationDescription() As NegotiationDescriptionType() Get Return Me.negotiationDescriptionField @@ -41134,9 +41134,9 @@ Namespace Peppol.BISBilling30CreditNote Me.negotiationDescriptionField = value End Set End Property - + ''' - _ + Public Property ProcedureCode() As ProcedureCodeType Get Return Me.procedureCodeField @@ -41145,9 +41145,9 @@ Namespace Peppol.BISBilling30CreditNote Me.procedureCodeField = value End Set End Property - + ''' - _ + Public Property UrgencyCode() As UrgencyCodeType Get Return Me.urgencyCodeField @@ -41156,9 +41156,9 @@ Namespace Peppol.BISBilling30CreditNote Me.urgencyCodeField = value End Set End Property - + ''' - _ + Public Property ExpenseCode() As ExpenseCodeType Get Return Me.expenseCodeField @@ -41167,9 +41167,9 @@ Namespace Peppol.BISBilling30CreditNote Me.expenseCodeField = value End Set End Property - + ''' - _ + Public Property PartPresentationCode() As PartPresentationCodeType Get Return Me.partPresentationCodeField @@ -41178,9 +41178,9 @@ Namespace Peppol.BISBilling30CreditNote Me.partPresentationCodeField = value End Set End Property - + ''' - _ + Public Property ContractingSystemCode() As ContractingSystemCodeType Get Return Me.contractingSystemCodeField @@ -41189,9 +41189,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractingSystemCodeField = value End Set End Property - + ''' - _ + Public Property SubmissionMethodCode() As SubmissionMethodCodeType Get Return Me.submissionMethodCodeField @@ -41200,9 +41200,9 @@ Namespace Peppol.BISBilling30CreditNote Me.submissionMethodCodeField = value End Set End Property - + ''' - _ + Public Property CandidateReductionConstraintIndicator() As CandidateReductionConstraintIndicatorType Get Return Me.candidateReductionConstraintIndicatorField @@ -41211,9 +41211,9 @@ Namespace Peppol.BISBilling30CreditNote Me.candidateReductionConstraintIndicatorField = value End Set End Property - + ''' - _ + Public Property GovernmentAgreementConstraintIndicator() As GovernmentAgreementConstraintIndicatorType Get Return Me.governmentAgreementConstraintIndicatorField @@ -41222,7 +41222,7 @@ Namespace Peppol.BISBilling30CreditNote Me.governmentAgreementConstraintIndicatorField = value End Set End Property - + ''' Public Property DocumentAvailabilityPeriod() As PeriodType Get @@ -41232,7 +41232,7 @@ Namespace Peppol.BISBilling30CreditNote Me.documentAvailabilityPeriodField = value End Set End Property - + ''' Public Property TenderSubmissionDeadlinePeriod() As PeriodType Get @@ -41242,7 +41242,7 @@ Namespace Peppol.BISBilling30CreditNote Me.tenderSubmissionDeadlinePeriodField = value End Set End Property - + ''' Public Property InvitationSubmissionPeriod() As PeriodType Get @@ -41252,7 +41252,7 @@ Namespace Peppol.BISBilling30CreditNote Me.invitationSubmissionPeriodField = value End Set End Property - + ''' Public Property ParticipationRequestReceptionPeriod() As PeriodType Get @@ -41262,9 +41262,9 @@ Namespace Peppol.BISBilling30CreditNote Me.participationRequestReceptionPeriodField = value End Set End Property - + ''' - _ + Public Property NoticeDocumentReference() As DocumentReferenceType() Get Return Me.noticeDocumentReferenceField @@ -41273,9 +41273,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noticeDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property AdditionalDocumentReference() As DocumentReferenceType() Get Return Me.additionalDocumentReferenceField @@ -41284,9 +41284,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ProcessJustification() As ProcessJustificationType() Get Return Me.processJustificationField @@ -41295,7 +41295,7 @@ Namespace Peppol.BISBilling30CreditNote Me.processJustificationField = value End Set End Property - + ''' Public Property EconomicOperatorShortList() As EconomicOperatorShortListType Get @@ -41305,9 +41305,9 @@ Namespace Peppol.BISBilling30CreditNote Me.economicOperatorShortListField = value End Set End Property - + ''' - _ + Public Property OpenTenderEvent() As EventType() Get Return Me.openTenderEventField @@ -41316,7 +41316,7 @@ Namespace Peppol.BISBilling30CreditNote Me.openTenderEventField = value End Set End Property - + ''' Public Property AuctionTerms() As AuctionTermsType Get @@ -41326,7 +41326,7 @@ Namespace Peppol.BISBilling30CreditNote Me.auctionTermsField = value End Set End Property - + ''' Public Property FrameworkAgreement() As FrameworkAgreementType Get @@ -41337,40 +41337,40 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportExecutionTermsType - + Private transportUserSpecialTermsField() As TransportUserSpecialTermsType - + Private transportServiceProviderSpecialTermsField() As TransportServiceProviderSpecialTermsType - + Private changeConditionsField() As ChangeConditionsType - + Private paymentTermsField() As PaymentTermsType - + Private deliveryTermsField() As DeliveryTermsType - + Private bonusPaymentTermsField As PaymentTermsType - + Private commissionPaymentTermsField As PaymentTermsType - + Private penaltyPaymentTermsField As PaymentTermsType - + Private environmentalEmissionField() As EnvironmentalEmissionType - + Private notificationRequirementField() As NotificationRequirementType - + Private serviceChargePaymentTermsField As PaymentTermsType - + ''' - _ + Public Property TransportUserSpecialTerms() As TransportUserSpecialTermsType() Get Return Me.transportUserSpecialTermsField @@ -41379,9 +41379,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportUserSpecialTermsField = value End Set End Property - + ''' - _ + Public Property TransportServiceProviderSpecialTerms() As TransportServiceProviderSpecialTermsType() Get Return Me.transportServiceProviderSpecialTermsField @@ -41390,9 +41390,9 @@ Namespace Peppol.BISBilling30CreditNote Me.transportServiceProviderSpecialTermsField = value End Set End Property - + ''' - _ + Public Property ChangeConditions() As ChangeConditionsType() Get Return Me.changeConditionsField @@ -41401,9 +41401,9 @@ Namespace Peppol.BISBilling30CreditNote Me.changeConditionsField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -41412,9 +41412,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -41423,7 +41423,7 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' Public Property BonusPaymentTerms() As PaymentTermsType Get @@ -41433,7 +41433,7 @@ Namespace Peppol.BISBilling30CreditNote Me.bonusPaymentTermsField = value End Set End Property - + ''' Public Property CommissionPaymentTerms() As PaymentTermsType Get @@ -41443,7 +41443,7 @@ Namespace Peppol.BISBilling30CreditNote Me.commissionPaymentTermsField = value End Set End Property - + ''' Public Property PenaltyPaymentTerms() As PaymentTermsType Get @@ -41453,9 +41453,9 @@ Namespace Peppol.BISBilling30CreditNote Me.penaltyPaymentTermsField = value End Set End Property - + ''' - _ + Public Property EnvironmentalEmission() As EnvironmentalEmissionType() Get Return Me.environmentalEmissionField @@ -41464,9 +41464,9 @@ Namespace Peppol.BISBilling30CreditNote Me.environmentalEmissionField = value End Set End Property - + ''' - _ + Public Property NotificationRequirement() As NotificationRequirementType() Get Return Me.notificationRequirementField @@ -41475,7 +41475,7 @@ Namespace Peppol.BISBilling30CreditNote Me.notificationRequirementField = value End Set End Property - + ''' Public Property ServiceChargePaymentTerms() As PaymentTermsType Get @@ -41486,42 +41486,42 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportScheduleType - + Private sequenceNumericField As SequenceNumericType - + Private referenceDateField As ReferenceDateType - + Private referenceTimeField As ReferenceTimeType - + Private reliabilityPercentField As ReliabilityPercentType - + Private remarksField() As RemarksType - + Private statusLocationField As LocationType1 - + Private actualArrivalTransportEventField As TransportEventType - + Private actualDepartureTransportEventField As TransportEventType - + Private estimatedDepartureTransportEventField As TransportEventType - + Private estimatedArrivalTransportEventField As TransportEventType - + Private plannedDepartureTransportEventField As TransportEventType - + Private plannedArrivalTransportEventField As TransportEventType - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -41530,9 +41530,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property ReferenceDate() As ReferenceDateType Get Return Me.referenceDateField @@ -41541,9 +41541,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceDateField = value End Set End Property - + ''' - _ + Public Property ReferenceTime() As ReferenceTimeType Get Return Me.referenceTimeField @@ -41552,9 +41552,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referenceTimeField = value End Set End Property - + ''' - _ + Public Property ReliabilityPercent() As ReliabilityPercentType Get Return Me.reliabilityPercentField @@ -41563,9 +41563,9 @@ Namespace Peppol.BISBilling30CreditNote Me.reliabilityPercentField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -41574,7 +41574,7 @@ Namespace Peppol.BISBilling30CreditNote Me.remarksField = value End Set End Property - + ''' Public Property StatusLocation() As LocationType1 Get @@ -41584,7 +41584,7 @@ Namespace Peppol.BISBilling30CreditNote Me.statusLocationField = value End Set End Property - + ''' Public Property ActualArrivalTransportEvent() As TransportEventType Get @@ -41594,7 +41594,7 @@ Namespace Peppol.BISBilling30CreditNote Me.actualArrivalTransportEventField = value End Set End Property - + ''' Public Property ActualDepartureTransportEvent() As TransportEventType Get @@ -41604,7 +41604,7 @@ Namespace Peppol.BISBilling30CreditNote Me.actualDepartureTransportEventField = value End Set End Property - + ''' Public Property EstimatedDepartureTransportEvent() As TransportEventType Get @@ -41614,7 +41614,7 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedDepartureTransportEventField = value End Set End Property - + ''' Public Property EstimatedArrivalTransportEvent() As TransportEventType Get @@ -41624,7 +41624,7 @@ Namespace Peppol.BISBilling30CreditNote Me.estimatedArrivalTransportEventField = value End Set End Property - + ''' Public Property PlannedDepartureTransportEvent() As TransportEventType Get @@ -41634,7 +41634,7 @@ Namespace Peppol.BISBilling30CreditNote Me.plannedDepartureTransportEventField = value End Set End Property - + ''' Public Property PlannedArrivalTransportEvent() As TransportEventType Get @@ -41645,30 +41645,30 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class TransportationSegmentType - + Private sequenceNumericField As SequenceNumericType - + Private transportExecutionPlanReferenceIDField As TransportExecutionPlanReferenceIDType - + Private transportationServiceField As TransportationServiceType - + Private transportServiceProviderPartyField As PartyType - + Private referencedConsignmentField As ConsignmentType - + Private shipmentStageField() As ShipmentStageType - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -41677,9 +41677,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property TransportExecutionPlanReferenceID() As TransportExecutionPlanReferenceIDType Get Return Me.transportExecutionPlanReferenceIDField @@ -41688,7 +41688,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportExecutionPlanReferenceIDField = value End Set End Property - + ''' Public Property TransportationService() As TransportationServiceType Get @@ -41698,7 +41698,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportationServiceField = value End Set End Property - + ''' Public Property TransportServiceProviderParty() As PartyType Get @@ -41708,7 +41708,7 @@ Namespace Peppol.BISBilling30CreditNote Me.transportServiceProviderPartyField = value End Set End Property - + ''' Public Property ReferencedConsignment() As ConsignmentType Get @@ -41718,9 +41718,9 @@ Namespace Peppol.BISBilling30CreditNote Me.referencedConsignmentField = value End Set End Property - + ''' - _ + Public Property ShipmentStage() As ShipmentStageType() Get Return Me.shipmentStageField @@ -41730,20 +41730,20 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class UBLExtensionsType - + Private uBLExtensionField() As UBLExtensionType - + ''' - _ + Public Property UBLExtension() As UBLExtensionType() Get Return Me.uBLExtensionField @@ -41753,38 +41753,38 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class UBLExtensionType - + Private idField As IDType - + Private nameField As NameType1 - + Private extensionAgencyIDField As ExtensionAgencyIDType - + Private extensionAgencyNameField As ExtensionAgencyNameType - + Private extensionVersionIDField As ExtensionVersionIDType - + Private extensionAgencyURIField As ExtensionAgencyURIType - + Private extensionURIField As ExtensionURIType - + Private extensionReasonCodeField As ExtensionReasonCodeType - + Private extensionReasonField As ExtensionReasonType - + Private extensionContentField As System.Xml.XmlElement - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -41793,9 +41793,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -41804,7 +41804,7 @@ Namespace Peppol.BISBilling30CreditNote Me.nameField = value End Set End Property - + ''' Public Property ExtensionAgencyID() As ExtensionAgencyIDType Get @@ -41814,7 +41814,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionAgencyIDField = value End Set End Property - + ''' Public Property ExtensionAgencyName() As ExtensionAgencyNameType Get @@ -41824,7 +41824,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionAgencyNameField = value End Set End Property - + ''' Public Property ExtensionVersionID() As ExtensionVersionIDType Get @@ -41834,7 +41834,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionVersionIDField = value End Set End Property - + ''' Public Property ExtensionAgencyURI() As ExtensionAgencyURIType Get @@ -41844,7 +41844,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionAgencyURIField = value End Set End Property - + ''' Public Property ExtensionURI() As ExtensionURIType Get @@ -41854,7 +41854,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionURIField = value End Set End Property - + ''' Public Property ExtensionReasonCode() As ExtensionReasonCodeType Get @@ -41864,7 +41864,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionReasonCodeField = value End Set End Property - + ''' Public Property ExtensionReason() As ExtensionReasonType Get @@ -41874,7 +41874,7 @@ Namespace Peppol.BISBilling30CreditNote Me.extensionReasonField = value End Set End Property - + ''' Public Property ExtensionContent() As System.Xml.XmlElement Get @@ -41885,121 +41885,121 @@ Namespace Peppol.BISBilling30CreditNote End Set End Property End Class - + ''' - _ + Partial Public Class CreditNoteType - + Private uBLExtensionsField() As UBLExtensionType - + Private uBLVersionIDField As UBLVersionIDType - + Private customizationIDField As CustomizationIDType - + Private profileIDField As ProfileIDType - + Private profileExecutionIDField As ProfileExecutionIDType - + Private idField As IDType - + Private copyIndicatorField As CopyIndicatorType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private taxPointDateField As TaxPointDateType - + Private creditNoteTypeCodeField As CreditNoteTypeCodeType - + Private noteField() As NoteType - + Private documentCurrencyCodeField As DocumentCurrencyCodeType - + Private taxCurrencyCodeField As TaxCurrencyCodeType - + Private pricingCurrencyCodeField As PricingCurrencyCodeType - + Private paymentCurrencyCodeField As PaymentCurrencyCodeType - + Private paymentAlternativeCurrencyCodeField As PaymentAlternativeCurrencyCodeType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private lineCountNumericField As LineCountNumericType - + Private buyerReferenceField As BuyerReferenceType - + Private invoicePeriodField() As PeriodType - + Private discrepancyResponseField() As ResponseType - + Private orderReferenceField As OrderReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private despatchDocumentReferenceField() As DocumentReferenceType - + Private receiptDocumentReferenceField() As DocumentReferenceType - + Private contractDocumentReferenceField() As DocumentReferenceType - + Private additionalDocumentReferenceField() As DocumentReferenceType - + Private statementDocumentReferenceField() As DocumentReferenceType - + Private originatorDocumentReferenceField() As DocumentReferenceType - + Private signatureField() As SignatureType - + Private accountingSupplierPartyField As SupplierPartyType - + Private accountingCustomerPartyField As CustomerPartyType - + Private payeePartyField As PartyType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private taxRepresentativePartyField As PartyType - + Private deliveryField() As DeliveryType - + Private deliveryTermsField() As DeliveryTermsType - + Private paymentMeansField() As PaymentMeansType - + Private paymentTermsField() As PaymentTermsType - + Private taxExchangeRateField As ExchangeRateType - + Private pricingExchangeRateField As ExchangeRateType - + Private paymentExchangeRateField As ExchangeRateType - + Private paymentAlternativeExchangeRateField As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private legalMonetaryTotalField As MonetaryTotalType - + Private creditNoteLineField() As CreditNoteLineType - + ''' - _ + Public Property UBLExtensions() As UBLExtensionType() Get Return Me.uBLExtensionsField @@ -42008,9 +42008,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uBLExtensionsField = value End Set End Property - + ''' - _ + Public Property UBLVersionID() As UBLVersionIDType Get Return Me.uBLVersionIDField @@ -42019,9 +42019,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uBLVersionIDField = value End Set End Property - + ''' - _ + Public Property CustomizationID() As CustomizationIDType Get Return Me.customizationIDField @@ -42030,9 +42030,9 @@ Namespace Peppol.BISBilling30CreditNote Me.customizationIDField = value End Set End Property - + ''' - _ + Public Property ProfileID() As ProfileIDType Get Return Me.profileIDField @@ -42041,9 +42041,9 @@ Namespace Peppol.BISBilling30CreditNote Me.profileIDField = value End Set End Property - + ''' - _ + Public Property ProfileExecutionID() As ProfileExecutionIDType Get Return Me.profileExecutionIDField @@ -42052,9 +42052,9 @@ Namespace Peppol.BISBilling30CreditNote Me.profileExecutionIDField = value End Set End Property - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -42063,9 +42063,9 @@ Namespace Peppol.BISBilling30CreditNote Me.idField = value End Set End Property - + ''' - _ + Public Property CopyIndicator() As CopyIndicatorType Get Return Me.copyIndicatorField @@ -42074,9 +42074,9 @@ Namespace Peppol.BISBilling30CreditNote Me.copyIndicatorField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -42085,9 +42085,9 @@ Namespace Peppol.BISBilling30CreditNote Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -42096,9 +42096,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -42107,9 +42107,9 @@ Namespace Peppol.BISBilling30CreditNote Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -42118,9 +42118,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property CreditNoteTypeCode() As CreditNoteTypeCodeType Get Return Me.creditNoteTypeCodeField @@ -42129,9 +42129,9 @@ Namespace Peppol.BISBilling30CreditNote Me.creditNoteTypeCodeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -42140,9 +42140,9 @@ Namespace Peppol.BISBilling30CreditNote Me.noteField = value End Set End Property - + ''' - _ + Public Property DocumentCurrencyCode() As DocumentCurrencyCodeType Get Return Me.documentCurrencyCodeField @@ -42151,9 +42151,9 @@ Namespace Peppol.BISBilling30CreditNote Me.documentCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property TaxCurrencyCode() As TaxCurrencyCodeType Get Return Me.taxCurrencyCodeField @@ -42162,9 +42162,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property PricingCurrencyCode() As PricingCurrencyCodeType Get Return Me.pricingCurrencyCodeField @@ -42173,9 +42173,9 @@ Namespace Peppol.BISBilling30CreditNote Me.pricingCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property PaymentCurrencyCode() As PaymentCurrencyCodeType Get Return Me.paymentCurrencyCodeField @@ -42184,9 +42184,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property PaymentAlternativeCurrencyCode() As PaymentAlternativeCurrencyCodeType Get Return Me.paymentAlternativeCurrencyCodeField @@ -42195,9 +42195,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentAlternativeCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -42206,9 +42206,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -42217,9 +42217,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property LineCountNumeric() As LineCountNumericType Get Return Me.lineCountNumericField @@ -42228,9 +42228,9 @@ Namespace Peppol.BISBilling30CreditNote Me.lineCountNumericField = value End Set End Property - + ''' - _ + Public Property BuyerReference() As BuyerReferenceType Get Return Me.buyerReferenceField @@ -42239,9 +42239,9 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerReferenceField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -42250,9 +42250,9 @@ Namespace Peppol.BISBilling30CreditNote Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property DiscrepancyResponse() As ResponseType() Get Return Me.discrepancyResponseField @@ -42261,9 +42261,9 @@ Namespace Peppol.BISBilling30CreditNote Me.discrepancyResponseField = value End Set End Property - + ''' - _ + Public Property OrderReference() As OrderReferenceType Get Return Me.orderReferenceField @@ -42272,9 +42272,9 @@ Namespace Peppol.BISBilling30CreditNote Me.orderReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -42283,9 +42283,9 @@ Namespace Peppol.BISBilling30CreditNote Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DespatchDocumentReference() As DocumentReferenceType() Get Return Me.despatchDocumentReferenceField @@ -42294,9 +42294,9 @@ Namespace Peppol.BISBilling30CreditNote Me.despatchDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptDocumentReference() As DocumentReferenceType() Get Return Me.receiptDocumentReferenceField @@ -42305,9 +42305,9 @@ Namespace Peppol.BISBilling30CreditNote Me.receiptDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ContractDocumentReference() As DocumentReferenceType() Get Return Me.contractDocumentReferenceField @@ -42316,9 +42316,9 @@ Namespace Peppol.BISBilling30CreditNote Me.contractDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property AdditionalDocumentReference() As DocumentReferenceType() Get Return Me.additionalDocumentReferenceField @@ -42327,9 +42327,9 @@ Namespace Peppol.BISBilling30CreditNote Me.additionalDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property StatementDocumentReference() As DocumentReferenceType() Get Return Me.statementDocumentReferenceField @@ -42338,9 +42338,9 @@ Namespace Peppol.BISBilling30CreditNote Me.statementDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property OriginatorDocumentReference() As DocumentReferenceType() Get Return Me.originatorDocumentReferenceField @@ -42349,9 +42349,9 @@ Namespace Peppol.BISBilling30CreditNote Me.originatorDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -42360,9 +42360,9 @@ Namespace Peppol.BISBilling30CreditNote Me.signatureField = value End Set End Property - + ''' - _ + Public Property AccountingSupplierParty() As SupplierPartyType Get Return Me.accountingSupplierPartyField @@ -42371,9 +42371,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingSupplierPartyField = value End Set End Property - + ''' - _ + Public Property AccountingCustomerParty() As CustomerPartyType Get Return Me.accountingCustomerPartyField @@ -42382,9 +42382,9 @@ Namespace Peppol.BISBilling30CreditNote Me.accountingCustomerPartyField = value End Set End Property - + ''' - _ + Public Property PayeeParty() As PartyType Get Return Me.payeePartyField @@ -42393,9 +42393,9 @@ Namespace Peppol.BISBilling30CreditNote Me.payeePartyField = value End Set End Property - + ''' - _ + Public Property BuyerCustomerParty() As CustomerPartyType Get Return Me.buyerCustomerPartyField @@ -42404,9 +42404,9 @@ Namespace Peppol.BISBilling30CreditNote Me.buyerCustomerPartyField = value End Set End Property - + ''' - _ + Public Property SellerSupplierParty() As SupplierPartyType Get Return Me.sellerSupplierPartyField @@ -42415,9 +42415,9 @@ Namespace Peppol.BISBilling30CreditNote Me.sellerSupplierPartyField = value End Set End Property - + ''' - _ + Public Property TaxRepresentativeParty() As PartyType Get Return Me.taxRepresentativePartyField @@ -42426,9 +42426,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxRepresentativePartyField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -42437,9 +42437,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -42448,9 +42448,9 @@ Namespace Peppol.BISBilling30CreditNote Me.deliveryTermsField = value End Set End Property - + ''' - _ + Public Property PaymentMeans() As PaymentMeansType() Get Return Me.paymentMeansField @@ -42459,9 +42459,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentMeansField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -42470,9 +42470,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property TaxExchangeRate() As ExchangeRateType Get Return Me.taxExchangeRateField @@ -42481,9 +42481,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxExchangeRateField = value End Set End Property - + ''' - _ + Public Property PricingExchangeRate() As ExchangeRateType Get Return Me.pricingExchangeRateField @@ -42492,9 +42492,9 @@ Namespace Peppol.BISBilling30CreditNote Me.pricingExchangeRateField = value End Set End Property - + ''' - _ + Public Property PaymentExchangeRate() As ExchangeRateType Get Return Me.paymentExchangeRateField @@ -42503,9 +42503,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentExchangeRateField = value End Set End Property - + ''' - _ + Public Property PaymentAlternativeExchangeRate() As ExchangeRateType Get Return Me.paymentAlternativeExchangeRateField @@ -42514,9 +42514,9 @@ Namespace Peppol.BISBilling30CreditNote Me.paymentAlternativeExchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -42525,9 +42525,9 @@ Namespace Peppol.BISBilling30CreditNote Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -42536,9 +42536,9 @@ Namespace Peppol.BISBilling30CreditNote Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property LegalMonetaryTotal() As MonetaryTotalType Get Return Me.legalMonetaryTotalField @@ -42547,9 +42547,9 @@ Namespace Peppol.BISBilling30CreditNote Me.legalMonetaryTotalField = value End Set End Property - + ''' - _ + Public Property CreditNoteLine() As CreditNoteLineType() Get Return Me.creditNoteLineField diff --git a/Interfaces/ZUGFeRDInterface/Peppol_BIS_Billing3017/InvoiceType.vb b/Interfaces/ZUGFeRDInterface/Peppol_UBL2.1/InvoiceType.vb similarity index 80% rename from Interfaces/ZUGFeRDInterface/Peppol_BIS_Billing3017/InvoiceType.vb rename to Interfaces/ZUGFeRDInterface/Peppol_UBL2.1/InvoiceType.vb index 79218b21..3c3f3e14 100644 --- a/Interfaces/ZUGFeRDInterface/Peppol_BIS_Billing3017/InvoiceType.vb +++ b/Interfaces/ZUGFeRDInterface/Peppol_UBL2.1/InvoiceType.vb @@ -16,43 +16,43 @@ Imports System.Xml.Serialization ' 'Dieser Quellcode wurde automatisch generiert von xsd, Version=4.8.3928.0. ' -Namespace Peppol.BISBilling30Invoice - +Namespace UBL_21_Invoice + ''' - _ + Partial Public Class TransportEventType - + Private identificationIDField As IdentificationIDType - + Private occurrenceDateField As OccurrenceDateType - + Private occurrenceTimeField As OccurrenceTimeType - + Private transportEventTypeCodeField As TransportEventTypeCodeType - + Private descriptionField() As DescriptionType - + Private completionIndicatorField As CompletionIndicatorType - + Private reportedShipmentField As ShipmentType - + Private currentStatusField() As StatusType - + Private contactField() As ContactType - + Private locationField As LocationType1 - + Private signatureField As SignatureType - + Private periodField() As PeriodType - + ''' - _ + Public Property IdentificationID() As IdentificationIDType Get Return Me.identificationIDField @@ -61,9 +61,9 @@ Namespace Peppol.BISBilling30Invoice Me.identificationIDField = value End Set End Property - + ''' - _ + Public Property OccurrenceDate() As OccurrenceDateType Get Return Me.occurrenceDateField @@ -72,9 +72,9 @@ Namespace Peppol.BISBilling30Invoice Me.occurrenceDateField = value End Set End Property - + ''' - _ + Public Property OccurrenceTime() As OccurrenceTimeType Get Return Me.occurrenceTimeField @@ -83,9 +83,9 @@ Namespace Peppol.BISBilling30Invoice Me.occurrenceTimeField = value End Set End Property - + ''' - _ + Public Property TransportEventTypeCode() As TransportEventTypeCodeType Get Return Me.transportEventTypeCodeField @@ -94,9 +94,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportEventTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -105,9 +105,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CompletionIndicator() As CompletionIndicatorType Get Return Me.completionIndicatorField @@ -116,7 +116,7 @@ Namespace Peppol.BISBilling30Invoice Me.completionIndicatorField = value End Set End Property - + ''' Public Property ReportedShipment() As ShipmentType Get @@ -126,9 +126,9 @@ Namespace Peppol.BISBilling30Invoice Me.reportedShipmentField = value End Set End Property - + ''' - _ + Public Property CurrentStatus() As StatusType() Get Return Me.currentStatusField @@ -137,9 +137,9 @@ Namespace Peppol.BISBilling30Invoice Me.currentStatusField = value End Set End Property - + ''' - _ + Public Property Contact() As ContactType() Get Return Me.contactField @@ -148,7 +148,7 @@ Namespace Peppol.BISBilling30Invoice Me.contactField = value End Set End Property - + ''' Public Property Location() As LocationType1 Get @@ -158,7 +158,7 @@ Namespace Peppol.BISBilling30Invoice Me.locationField = value End Set End Property - + ''' Public Property Signature() As SignatureType Get @@ -168,9 +168,9 @@ Namespace Peppol.BISBilling30Invoice Me.signatureField = value End Set End Property - + ''' - _ + Public Property Period() As PeriodType() Get Return Me.periodField @@ -180,279 +180,279 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class IdentificationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IdentifierType1 Inherits IdentifierType End Class - + ''' - _ + Partial Public Class IdentifierType - + Private schemeIDField As String - + Private schemeNameField As String - + Private schemeAgencyIDField As String - + Private schemeAgencyNameField As String - + Private schemeVersionIDField As String - + Private schemeDataURIField As String - + Private schemeURIField As String - + Private valueField As String - + ''' - _ + Public Property schemeID() As String Get Return Me.schemeIDField @@ -461,9 +461,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeIDField = value End Set End Property - + ''' - _ + Public Property schemeName() As String Get Return Me.schemeNameField @@ -472,9 +472,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeNameField = value End Set End Property - + ''' - _ + Public Property schemeAgencyID() As String Get Return Me.schemeAgencyIDField @@ -483,9 +483,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeAgencyIDField = value End Set End Property - + ''' - _ + Public Property schemeAgencyName() As String Get Return Me.schemeAgencyNameField @@ -494,9 +494,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeAgencyNameField = value End Set End Property - + ''' - _ + Public Property schemeVersionID() As String Get Return Me.schemeVersionIDField @@ -505,9 +505,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeVersionIDField = value End Set End Property - + ''' - _ + Public Property schemeDataURI() As String Get Return Me.schemeDataURIField @@ -516,9 +516,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeDataURIField = value End Set End Property - + ''' - _ + Public Property schemeURI() As String Get Return Me.schemeURIField @@ -527,9 +527,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeURIField = value End Set End Property - + ''' - _ + Public Property Value() As String Get Return Me.valueField @@ -539,37 +539,37 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class BinaryObjectType - + Private formatField As String - + Private mimeCodeField As String - + Private encodingCodeField As String - + Private characterSetCodeField As String - + Private uriField As String - + Private filenameField As String - + Private valueField() As Byte - + ''' - _ + Public Property format() As String Get Return Me.formatField @@ -578,9 +578,9 @@ Namespace Peppol.BISBilling30Invoice Me.formatField = value End Set End Property - + ''' - _ + Public Property mimeCode() As String Get Return Me.mimeCodeField @@ -589,9 +589,9 @@ Namespace Peppol.BISBilling30Invoice Me.mimeCodeField = value End Set End Property - + ''' - _ + Public Property encodingCode() As String Get Return Me.encodingCodeField @@ -600,9 +600,9 @@ Namespace Peppol.BISBilling30Invoice Me.encodingCodeField = value End Set End Property - + ''' - _ + Public Property characterSetCode() As String Get Return Me.characterSetCodeField @@ -611,9 +611,9 @@ Namespace Peppol.BISBilling30Invoice Me.characterSetCodeField = value End Set End Property - + ''' - _ + Public Property uri() As String Get Return Me.uriField @@ -622,9 +622,9 @@ Namespace Peppol.BISBilling30Invoice Me.uriField = value End Set End Property - + ''' - _ + Public Property filename() As String Get Return Me.filenameField @@ -633,9 +633,9 @@ Namespace Peppol.BISBilling30Invoice Me.filenameField = value End Set End Property - + ''' - _ + Public Property Value() As Byte() Get Return Me.valueField @@ -645,124 +645,124 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class VideoType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class SoundType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class PictureType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class GraphicType Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class BinaryObjectType1 Inherits BinaryObjectType End Class - + ''' - _ + Partial Public Class EmbeddedDocumentBinaryObjectType Inherits BinaryObjectType1 End Class - + ''' - _ + Partial Public Class NumericType - + Private formatField As String - + Private valueField As Decimal - + ''' - _ + Public Property format() As String Get Return Me.formatField @@ -771,9 +771,9 @@ Namespace Peppol.BISBilling30Invoice Me.formatField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -783,576 +783,576 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RateType Inherits NumericType End Class - + ''' - _ + Partial Public Class TargetCurrencyBaseRateType Inherits RateType End Class - + ''' - _ + Partial Public Class SourceCurrencyBaseRateType Inherits RateType End Class - + ''' - _ + Partial Public Class RateType1 Inherits RateType End Class - + ''' - _ + Partial Public Class OrderableUnitFactorRateType Inherits RateType End Class - + ''' - _ + Partial Public Class CalculationRateType Inherits RateType End Class - + ''' - _ + Partial Public Class AmountRateType Inherits RateType End Class - + ''' - _ + Partial Public Class PercentType Inherits NumericType End Class - + ''' - _ + Partial Public Class TierRatePercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class TargetServicePercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class SettlementDiscountPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ReliabilityPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ProgressPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class PercentType1 Inherits PercentType End Class - + ''' - _ + Partial Public Class PenaltySurchargePercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class PaymentPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ParticipationPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class PartecipationPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class MinimumPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class MaximumPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class HumidityPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class AirFlowPercentType Inherits PercentType End Class - + ''' - _ + Partial Public Class ValueType1 Inherits NumericType End Class - + ''' - _ + Partial Public Class NumericType1 Inherits NumericType End Class - + ''' - _ + Partial Public Class WeightNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class SequenceNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class ResidentOccupantsNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class ReminderSequenceNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class PackSizeNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class OrderQuantityIncrementNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class OrderIntervalDaysNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MultiplierFactorNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MinimumNumberNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MaximumPaymentInstructionsNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MaximumNumberNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class MaximumCopiesNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class LineNumberNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class LineCountNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class FrozenPeriodDaysNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class CalculationSequenceNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class BudgetYearNumericType Inherits NumericType1 End Class - + ''' - _ + Partial Public Class AmountType - + Private currencyIDField As String - + Private currencyCodeListVersionIDField As String - + Private valueField As Decimal - + ''' - _ + Public Property currencyID() As String Get Return Me.currencyIDField @@ -1361,9 +1361,9 @@ Namespace Peppol.BISBilling30Invoice Me.currencyIDField = value End Set End Property - + ''' - _ + Public Property currencyCodeListVersionID() As String Get Return Me.currencyCodeListVersionIDField @@ -1372,9 +1372,9 @@ Namespace Peppol.BISBilling30Invoice Me.currencyCodeListVersionIDField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -1384,919 +1384,919 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AmountType1 Inherits AmountType End Class - + ''' - _ + Partial Public Class ValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TransactionCurrencyTaxAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalTaxAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalTaskAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalPaymentAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalInvoiceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalDebitAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalCreditAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalBalanceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TotalAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class ThresholdAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxableAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxInclusiveAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxExclusiveAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxEnergyOnAccountAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxEnergyBalanceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxEnergyAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class TaxAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class SettlementDiscountAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class RoundingAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class RequiredFeeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PriceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PrepaidAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PerUnitAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PenaltyAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PayableRoundingAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PayableAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PayableAlternativeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PartyCapacityAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class PaidAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MinimumAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MaximumPaidAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MaximumAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MaximumAdvertisementAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class MarketValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class LowerTenderAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class LineExtensionAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class LiabilityAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class InventoryValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class InsuranceValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class InsurancePremiumAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class HigherTenderAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class FreeOnBoardValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class FeeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class FaceValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class EstimatedOverallContractAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class EstimatedAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DocumentationFeeAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredStatisticsValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredForCarriageValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredCustomsValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DeclaredCarriageValueAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class DebitLineAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CreditLineAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CorrectionUnitAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CorrectionAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CorporateStockAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class ChargeTotalAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CallExtensionAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class CallBaseAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class BaseAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class BalanceAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AverageSubsequentContractAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AverageAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AnnualAverageAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AmountType2 Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AllowanceTotalAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class AdvertisementAmountType Inherits AmountType1 End Class - + ''' - _ + Partial Public Class QuantityType - + Private unitCodeField As String - + Private unitCodeListIDField As String - + Private unitCodeListAgencyIDField As String - + Private unitCodeListAgencyNameField As String - + Private valueField As Decimal - + ''' - _ + Public Property unitCode() As String Get Return Me.unitCodeField @@ -2305,9 +2305,9 @@ Namespace Peppol.BISBilling30Invoice Me.unitCodeField = value End Set End Property - + ''' - _ + Public Property unitCodeListID() As String Get Return Me.unitCodeListIDField @@ -2316,9 +2316,9 @@ Namespace Peppol.BISBilling30Invoice Me.unitCodeListIDField = value End Set End Property - + ''' - _ + Public Property unitCodeListAgencyID() As String Get Return Me.unitCodeListAgencyIDField @@ -2327,9 +2327,9 @@ Namespace Peppol.BISBilling30Invoice Me.unitCodeListAgencyIDField = value End Set End Property - + ''' - _ + Public Property unitCodeListAgencyName() As String Get Return Me.unitCodeListAgencyNameField @@ -2338,9 +2338,9 @@ Namespace Peppol.BISBilling30Invoice Me.unitCodeListAgencyNameField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -2350,840 +2350,840 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class QuantityType1 Inherits QuantityType End Class - + ''' - _ + Partial Public Class VarianceQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ValueQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalTransportHandlingUnitQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalPackagesQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalPackageQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalMeteredQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalGoodsItemQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalDeliveredQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TotalConsumedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TimeDeltaDaysQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ThresholdQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class TargetInventoryQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ShortQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class SharesNumberQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReturnableQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class RejectedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedTenderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedForeignTenderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ReceivedElectronicTenderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class QuantityType2 Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PreviousMeterQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PerformanceValueQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PassengerQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class PackQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class OversupplyQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class OutstandingQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class OperatingYearsQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class NormalTemperatureReductionQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MultipleOrderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumOrderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumInventoryQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MinimumBackorderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumVariantQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumOrderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumOperatorQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MaximumBackorderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class LatestMeterQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class InvoicedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class GasPressureQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ExpectedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ExpectedOperatorQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class EstimatedOverallContractQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class EstimatedConsumedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class EmployeeQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class DifferenceTemperatureReductionQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class DeliveredQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class DebitedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class CustomsTariffQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class CrewQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class CreditedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ContentUnitQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsumptionWaterQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsumptionEnergyQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsumerUnitQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ConsignmentQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ChildConsignmentQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ChargeableQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BatchQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BasicConsumedQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BaseQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class BackorderQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class ActualTemperatureReductionQuantityType Inherits QuantityType1 End Class - + ''' - _ + Partial Public Class MeasureType - + Private unitCodeField As String - + Private unitCodeListVersionIDField As String - + Private valueField As Decimal - + ''' - _ + Public Property unitCode() As String Get Return Me.unitCodeField @@ -3192,9 +3192,9 @@ Namespace Peppol.BISBilling30Invoice Me.unitCodeField = value End Set End Property - + ''' - _ + Public Property unitCodeListVersionID() As String Get Return Me.unitCodeListVersionIDField @@ -3203,9 +3203,9 @@ Namespace Peppol.BISBilling30Invoice Me.unitCodeListVersionIDField = value End Set End Property - + ''' - _ + Public Property Value() As Decimal Get Return Me.valueField @@ -3215,401 +3215,401 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MeasureType1 Inherits MeasureType End Class - + ''' - _ + Partial Public Class ValueMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class TareWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class SourceValueMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class PreEventNotificationDurationMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class PostEventNotificationDurationMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetVolumeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetTonnageMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class NetNetWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class MinimumMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class MeasureType2 Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class MaximumMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LongitudeMinutesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LongitudeDegreesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LoadingLengthMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LeadTimeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LatitudeMinutesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class LatitudeDegreesMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class GrossWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class GrossVolumeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class GrossTonnageMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class DurationMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class ComparedValueMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class ChargeableWeightMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class BaseUnitMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class AltitudeMeasureType Inherits MeasureType1 End Class - + ''' - _ + Partial Public Class IndicatorType - + Private valueField As Boolean - + ''' - _ + Public Property Value() As Boolean Get Return Me.valueField @@ -3619,897 +3619,897 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class VariantConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class UnknownPriceIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ToOrderIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ThirdPartyPayerIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class TaxIncludedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class TaxEvidenceIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class StatusAvailableIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class SplitConsignmentIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class SpecialSecurityIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class SoleProprietorshipIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ReturnableMaterialIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ReturnabilityIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class RequiredCurriculaIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class RefrigerationOnIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class RefrigeratedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PublishAwardIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PrizeIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PricingUpdateRequestIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PrepaidIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PreCarriageIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PowerIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class PartialDeliveryIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OtherConditionsIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OrderableIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OptionalLineItemIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class OnCarriageIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class MarkCareIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class MarkAttentionIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class LivestockIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class LegalStatusIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ItemUpdateRequestIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class IndicationIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class HumanFoodIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class HumanFoodApprovedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class HazardousRiskIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class GovernmentAgreementConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class GeneralCargoIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FullyPaidSharesIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FrozenDocumentIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FreeOfChargeIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class FollowupContractIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class DangerousGoodsApprovedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CustomsImportClassifiedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CopyIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ContainerizedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ConsolidatableIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CompletionIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class ChargeIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CatalogueIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class CandidateReductionConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BulkCargoIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BindingOnBuyerIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BasedOnConsensusIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BalanceBroughtForwardIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class BackOrderAllowedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AuctionConstraintIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AnimalFoodIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AnimalFoodApprovedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AdValoremIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class AcceptedIndicatorType Inherits IndicatorType End Class - + ''' - _ + Partial Public Class TextType - + Private languageIDField As String - + Private languageLocaleIDField As String - + Private valueField As String - + ''' - _ + Public Property languageID() As String Get Return Me.languageIDField @@ -4518,9 +4518,9 @@ Namespace Peppol.BISBilling30Invoice Me.languageIDField = value End Set End Property - + ''' - _ + Public Property languageLocaleID() As String Get Return Me.languageLocaleIDField @@ -4529,9 +4529,9 @@ Namespace Peppol.BISBilling30Invoice Me.languageLocaleIDField = value End Set End Property - + ''' - _ + Public Property Value() As String Get Return Me.valueField @@ -4541,2816 +4541,2816 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class NameType Inherits TextType End Class - + ''' - _ + Partial Public Class VesselNameType Inherits NameType End Class - + ''' - _ + Partial Public Class TechnicalNameType Inherits NameType End Class - + ''' - _ + Partial Public Class StreetNameType Inherits NameType End Class - + ''' - _ + Partial Public Class ServiceNameType Inherits NameType End Class - + ''' - _ + Partial Public Class RoamingPartnerNameType Inherits NameType End Class - + ''' - _ + Partial Public Class RetailEventNameType Inherits NameType End Class - + ''' - _ + Partial Public Class RegistrationNameType Inherits NameType End Class - + ''' - _ + Partial Public Class OtherNameType Inherits NameType End Class - + ''' - _ + Partial Public Class NameType1 Inherits NameType End Class - + ''' - _ + Partial Public Class ModelNameType Inherits NameType End Class - + ''' - _ + Partial Public Class MiddleNameType Inherits NameType End Class - + ''' - _ + Partial Public Class HolderNameType Inherits NameType End Class - + ''' - _ + Partial Public Class FirstNameType Inherits NameType End Class - + ''' - _ + Partial Public Class FileNameType Inherits NameType End Class - + ''' - _ + Partial Public Class FamilyNameType Inherits NameType End Class - + ''' - _ + Partial Public Class CitySubdivisionNameType Inherits NameType End Class - + ''' - _ + Partial Public Class CityNameType Inherits NameType End Class - + ''' - _ + Partial Public Class CategoryNameType Inherits NameType End Class - + ''' - _ + Partial Public Class BuildingNameType Inherits NameType End Class - + ''' - _ + Partial Public Class BrandNameType Inherits NameType End Class - + ''' - _ + Partial Public Class BlockNameType Inherits NameType End Class - + ''' - _ + Partial Public Class AliasNameType Inherits NameType End Class - + ''' - _ + Partial Public Class AdditionalStreetNameType Inherits NameType End Class - + ''' - _ + Partial Public Class TextType1 Inherits TextType End Class - + ''' - _ + Partial Public Class ExtensionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExtensionAgencyNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class XPathType Inherits TextType1 End Class - + ''' - _ + Partial Public Class WorkPhaseType Inherits TextType1 End Class - + ''' - _ + Partial Public Class WeightType Inherits TextType1 End Class - + ''' - _ + Partial Public Class WarrantyInformationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValueQualifierType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValidateToolVersionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValidateToolType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ValidateProcessType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportationServiceDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportUserSpecialTermsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportUserRemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportServiceProviderSpecialTermsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TransportServiceProviderRemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TradingRestrictionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TitleType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TimingComplaintType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TimezoneOffsetType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TimeAmountType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TierRangeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TextType2 Inherits TextType1 End Class - + ''' - _ + Partial Public Class TestMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelephoneType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelefaxType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCategoryType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCallType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TechnicalCommitteeDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TaxExemptionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class TariffDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SummaryDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SubscriberTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class StatusReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialTransportRequirementsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialTermsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SpecialInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SignatureMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ShipsRequirementsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ShippingMarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ServiceTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ServiceNumberCalledType Inherits TextType1 End Class - + ''' - _ + Partial Public Class SealingPartyTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RoomType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RoleDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ResolutionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ResidenceTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ReplenishmentOwnerDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RejectionNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RejectReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RegulatoryDomainType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RegistrationNationalityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RegionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class RankType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PurposeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ProcessReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ProcessDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PrizeDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriorityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PrintQualifierType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriceTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriceRevisionFormulaDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PriceChangeReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PreviousMeterReadingMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PostboxType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PostalZoneType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PlotIdentificationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PlacardNotationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PlacardEndorsementType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PhoneNumberType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PersonalSituationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PaymentOrderReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PaymentNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PaymentDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PayerReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PayPerViewType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PasswordType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PartyTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class PackingMaterialType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OutstandingReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OtherInstructionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OrganizationDepartmentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OrderableUnitType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OptionsDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class OneTimeChargeTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class NoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class NegotiationDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class NameSuffixType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MovieTitleType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MonetaryScopeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MinimumValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MinimumImprovementBidType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterReadingTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterReadingCommentsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterNumberType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MeterConstantType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MaximumValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MarkCareType Inherits TextType1 End Class - + ''' - _ + Partial Public Class MarkAttentionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LowTendersDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LossRiskType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LoginType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LocationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ListValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LineType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LimitationDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LegalReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class LatestMeterReadingMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class KeywordType Inherits TextType1 End Class - + ''' - _ + Partial Public Class JustificationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class JustificationDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class JobTitleType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InvoicingPartyReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InstructionNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InhouseMailType Inherits TextType1 End Class - + ''' - _ + Partial Public Class InformationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HeatingTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HaulageInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HashAlgorithmMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class HandlingInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FundingProgramType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FrequencyType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ForwarderServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FloorType Inherits TextType1 End Class - + ''' - _ + Partial Public Class FeeDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExtensionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExpressionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExemptionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ExclusionReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ElectronicMailType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ElectronicDeviceDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DutyType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentStatusReasonDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentHashType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DocumentDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DistrictType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DepartmentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DemurrageInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DeliveryInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DataSendingCapabilityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class DamageRemarksType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CustomsClearanceServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CustomerReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CurrentChargeTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CountrySubentityType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CorrectionTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContractTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContractSubdivisionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContractNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ContentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConsumptionTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConsumptionLevelType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConsumersEnergyLevelType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConditionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConditionsDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ConditionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CompanyLegalFormType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CommentType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CodeValueType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CharacteristicsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ChannelType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ChangeConditionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CertificateTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CarrierServiceInstructionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CanonicalizationMethodType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CandidateStatementType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CancellationNoteType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CalculationExpressionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BuyerReferenceType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BuildingNumberType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BirthplaceNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class BackorderReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AwardingCriterionDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ApprovalStatusType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AllowanceChargeReasonType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AgencyNameType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AdditionalInformationType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AdditionalConditionsType Inherits TextType1 End Class - + ''' - _ + Partial Public Class ActivityTypeType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AccountingCostType Inherits TextType1 End Class - + ''' - _ + Partial Public Class AcceptedVariantsDescriptionType Inherits TextType1 End Class - + ''' - _ + Partial Public Class CodeType - + Private listIDField As String - + Private listAgencyIDField As String - + Private listAgencyNameField As String - + Private listNameField As String - + Private listVersionIDField As String - + Private nameField As String - + Private languageIDField As String - + Private listURIField As String - + Private listSchemeURIField As String - + Private valueField As String - + ''' - _ + Public Property listID() As String Get Return Me.listIDField @@ -7359,9 +7359,9 @@ Namespace Peppol.BISBilling30Invoice Me.listIDField = value End Set End Property - + ''' - _ + Public Property listAgencyID() As String Get Return Me.listAgencyIDField @@ -7370,9 +7370,9 @@ Namespace Peppol.BISBilling30Invoice Me.listAgencyIDField = value End Set End Property - + ''' - _ + Public Property listAgencyName() As String Get Return Me.listAgencyNameField @@ -7381,9 +7381,9 @@ Namespace Peppol.BISBilling30Invoice Me.listAgencyNameField = value End Set End Property - + ''' - _ + Public Property listName() As String Get Return Me.listNameField @@ -7392,9 +7392,9 @@ Namespace Peppol.BISBilling30Invoice Me.listNameField = value End Set End Property - + ''' - _ + Public Property listVersionID() As String Get Return Me.listVersionIDField @@ -7403,9 +7403,9 @@ Namespace Peppol.BISBilling30Invoice Me.listVersionIDField = value End Set End Property - + ''' - _ + Public Property name() As String Get Return Me.nameField @@ -7414,9 +7414,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property languageID() As String Get Return Me.languageIDField @@ -7425,9 +7425,9 @@ Namespace Peppol.BISBilling30Invoice Me.languageIDField = value End Set End Property - + ''' - _ + Public Property listURI() As String Get Return Me.listURIField @@ -7436,9 +7436,9 @@ Namespace Peppol.BISBilling30Invoice Me.listURIField = value End Set End Property - + ''' - _ + Public Property listSchemeURI() As String Get Return Me.listSchemeURIField @@ -7447,9 +7447,9 @@ Namespace Peppol.BISBilling30Invoice Me.listSchemeURIField = value End Set End Property - + ''' - _ + Public Property Value() As String Get Return Me.valueField @@ -7459,2628 +7459,2628 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CodeType1 Inherits CodeType End Class - + ''' - _ + Partial Public Class ExtensionReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class WorkPhaseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class WeightingAlgorithmCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class WeekDayCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ValidationResultCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class UtilityStatementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class UrgencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class UNDGCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportationStatusTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportServiceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportModeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportMeansTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportHandlingUnitTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportExecutionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportEventTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportEquipmentTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportEmergencyCardCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransportAuthorizationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TransitDirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TradeServiceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TradeItemPackingLabelingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TrackingDeviceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TimingComplaintCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TimeFrequencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ThresholdValueComparisonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TendererRoleCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TendererRequirementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TenderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TenderResultCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TenderEnvelopeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCategoryCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceCallCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxExemptionReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TaxCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TariffCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TariffClassCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TargetCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SupplyChainActivityTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubstitutionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubscriberTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubmissionMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SubcontractingConditionsCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class StatusReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class StatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class StatementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SpecificationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SourceCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SizeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ShortageActionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ShippingPriorityLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ServiceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ServiceInformationPreferenceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SecurityClassificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SealStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class SealIssuerTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RoleCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RevisionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RetailEventStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ResponseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ResolutionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ResidenceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RequestedInvoiceCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ReminderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RejectReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class RejectActionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ReferenceEventCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ReceiptAdviceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class QuantityDiscrepancyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class QualityControlCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PurposeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProviderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PromotionalEventTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProfileStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcurementTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcurementSubTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcessReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ProcedureCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PrivacyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PricingCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PriceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PriceEvaluationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PreviousMeterReadingMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PreviousCancellationReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PreferenceCriterionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PositionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PerformanceMetricTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentPurposeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentMeansCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentFrequencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentChannelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PaymentAlternativeCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PartyTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PartPresentationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ParentDocumentTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackingCriteriaCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackagingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackageLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class PackLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OwnerTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OrderTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OrderResponseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class OneTimeChargeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class NotificationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class NatureCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class NameCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MiscellaneousEventTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MimeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MeterReadingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MeterConstantCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MedicalFirstAidGuideCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MathematicOperatorCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class MandateTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LossRiskResponsibilityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LongitudeDirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LocationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LocaleCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LineStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LifeCycleStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LatitudeDirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class LatestMeterReadingMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ItemClassificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class InvoiceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class InspectionMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class InhalationToxicityZoneCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class IndustryClassificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ImportanceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class IdentificationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HeatingTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HazardousRegulationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HazardousCategoryCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class HandlingCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class GuaranteeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class GenderCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FundingProgramCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FullnessIndicationCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FreightRateClassCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FormatCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ForecastTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ForecastPurposeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FinancingInstrumentCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class FeatureTacticTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExpressionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExpenseCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExemptionReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExecutionRequirementCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExceptionStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ExceptionResolutionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EvidenceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EvaluationCriterionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EnvironmentalEmissionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EncodingCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class EmergencyProceduresCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DutyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentStatusReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DocumentCurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DispositionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DisplayTacticTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DirectionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DespatchAdviceTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DescriptionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DeclarationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class DataSourceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CustomsStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CurrentChargeTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CurrencyCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CreditNoteTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CountrySubentityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CorrectionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CorporateRegistrationTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CoordinateSystemCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ContractingSystemCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ContractTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumptionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumptionLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumersEnergyLevelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConsumerIncentiveTacticTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConstitutionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ConditionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ComparisonDataSourceCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ComparisonDataCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CompanyLiquidationStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CompanyLegalFormCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CommodityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CollaborationPriorityCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CharacterSetCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ChannelCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CertificateTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CargoTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CardTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CardChipCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CapabilityTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CalculationMethodCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class CalculationExpressionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AwardingMethodTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AwardingCriterionTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AvailabilityStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ApplicationStatusCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AllowanceChargeReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AdmissionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AdjustmentReasonCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AddressTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AddressFormatCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ActivityTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class ActionCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AccountingCostCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AccountTypeCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class AccountFormatCodeType Inherits CodeType1 End Class - + ''' - _ + Partial Public Class TimeType - + Private valueField As Date - + ''' - _ + Public Property Value() As Date Get Return Me.valueField @@ -10090,414 +10090,414 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ValidationTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class StartTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class SourceForecastIssueTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RevisionTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ResponseTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ResolutionTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RequiredDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RequestedDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class RegisteredTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ReferenceTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class PaidTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class OccurrenceTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class NominationTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ManufactureTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class LatestPickupTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class LatestDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class LastRevisionTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class IssueTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class GuaranteedDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ExpiryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EstimatedDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EstimatedDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EndTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EffectiveTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class EarliestPickupTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ComparisonForecastIssueTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class CallTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class AwardTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ActualPickupTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ActualDespatchTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class ActualDeliveryTimeType Inherits TimeType End Class - + ''' - _ + Partial Public Class DateType - + Private valueField As Date - + ''' - _ + Public Property Value() As Date Get Return Me.valueField @@ -10507,1897 +10507,1897 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ValidityStartDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ValidationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class TaxPointDateType Inherits DateType End Class - + ''' - _ + Partial Public Class SubmissionDueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class SubmissionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class StartDateType Inherits DateType End Class - + ''' - _ + Partial Public Class SourceForecastIssueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RevisionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ResponseDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ResolutionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequiredDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequestedPublicationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequestedDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RequestedDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RegistrationExpirationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RegistrationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class RegisteredDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ReferenceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ReceivedDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PreviousMeterReadingDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PlannedDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PaymentDueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class PaidDateType Inherits DateType End Class - + ''' - _ + Partial Public Class OccurrenceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class NominationDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ManufactureDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestSecurityClearanceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestProposalAcceptanceDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestPickupDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestMeterReadingDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LatestDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class LastRevisionDateType Inherits DateType End Class - + ''' - _ + Partial Public Class IssueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class InstallmentDueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class GuaranteedDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class FirstShipmentAvailibilityDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ExpiryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EstimatedDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EstimatedDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EndDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EffectiveDateType Inherits DateType End Class - + ''' - _ + Partial Public Class EarliestPickupDateType Inherits DateType End Class - + ''' - _ + Partial Public Class DueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class DateType1 Inherits DateType End Class - + ''' - _ + Partial Public Class ComparisonForecastIssueDateType Inherits DateType End Class - + ''' - _ + Partial Public Class CallDateType Inherits DateType End Class - + ''' - _ + Partial Public Class BirthDateType Inherits DateType End Class - + ''' - _ + Partial Public Class BestBeforeDateType Inherits DateType End Class - + ''' - _ + Partial Public Class AwardDateType Inherits DateType End Class - + ''' - _ + Partial Public Class AvailabilityDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ApprovalDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ActualPickupDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ActualDespatchDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ActualDeliveryDateType Inherits DateType End Class - + ''' - _ + Partial Public Class ExtensionVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtensionURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtensionAgencyURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtensionAgencyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class WebsiteURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class VesselIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class VersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class VariantIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ValidatorIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class UpperOrangeHazardPlacardIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class UUIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class URIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class UBLVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TransportationServiceDetailsURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TransportExecutionPlanReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TrainIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TrackingIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TraceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class TenderEnvelopeIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SupplierAssignedAccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SuccessiveSequenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SubscriberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SpecificationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SignatureIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ShippingOrderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SerialIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SequenceNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SequenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SellerEventIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SecurityIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SchemeURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SalesOrderLineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class SalesOrderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RevisedForecastLineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RequiredCustomsIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RequestForQuotationLineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ReleaseIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RegistrationNationalityIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RegistrationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ReferencedConsignmentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RailCarIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class RadioCallSignIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ProfileIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ProfileExecutionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ProductTraceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PrimaryAccountNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PreviousVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PreviousJobIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PrepaidPaymentReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PerformingCarrierAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PaymentTermsDetailsURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PaymentMeansIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class PaymentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ParentDocumentVersionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ParentDocumentLineReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ParentDocumentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OriginalJobIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OriginalContractingSystemIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OpenTenderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class OntologyURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class NetworkIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class NationalityIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class MarkingIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LowerOrangeHazardPlacardIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LotNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LogoReferenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LocationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LoadingSequenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LineIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LicensePlateIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class LanguageIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class JourneyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IssuerIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IssueNumberIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class InstructionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class InformationURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ImmobilizationCertificateIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class IDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class HazardClassIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class FreightForwarderAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExtendedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ExchangeMarketIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class EndpointIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class EconomicOperatorRegistryURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class DocumentIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CustomizationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CustomerAssignedAccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ContractedCarrierAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ContractFolderIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsumptionReportIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsumptionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsignorAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ConsigneeAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CompanyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ChipApplicationIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CarrierAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class CV2IDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BuyerProfileURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BuyerEventIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BusinessIdentityEvidenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BusinessClassificationEvidenceIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BrokerAssignedIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class BarcodeSymbologyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AwardingCriterionIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AuctionURIType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AttributeIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AircraftIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AgencyIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AdditionalAccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class AccountIDType Inherits IdentifierType1 End Class - + ''' - _ + Partial Public Class ShipmentType - + Private idField As IDType - + Private shippingPriorityLevelCodeField As ShippingPriorityLevelCodeType - + Private handlingCodeField As HandlingCodeType - + Private handlingInstructionsField() As HandlingInstructionsType - + Private informationField() As InformationType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netNetWeightMeasureField As NetNetWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private totalGoodsItemQuantityField As TotalGoodsItemQuantityType - + Private totalTransportHandlingUnitQuantityField As TotalTransportHandlingUnitQuantityType - + Private insuranceValueAmountField As InsuranceValueAmountType - + Private declaredCustomsValueAmountField As DeclaredCustomsValueAmountType - + Private declaredForCarriageValueAmountField As DeclaredForCarriageValueAmountType - + Private declaredStatisticsValueAmountField As DeclaredStatisticsValueAmountType - + Private freeOnBoardValueAmountField As FreeOnBoardValueAmountType - + Private specialInstructionsField() As SpecialInstructionsType - + Private deliveryInstructionsField() As DeliveryInstructionsType - + Private splitConsignmentIndicatorField As SplitConsignmentIndicatorType - + Private consignmentQuantityField As ConsignmentQuantityType - + Private consignmentField() As ConsignmentType - + Private goodsItemField() As GoodsItemType - + Private shipmentStageField() As ShipmentStageType - + Private deliveryField As DeliveryType - + Private transportHandlingUnitField() As TransportHandlingUnitType - + Private returnAddressField As AddressType - + Private originAddressField As AddressType - + Private firstArrivalPortLocationField As LocationType1 - + Private lastExitPortLocationField As LocationType1 - + Private exportCountryField As CountryType - + Private freightAllowanceChargeField() As AllowanceChargeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -12406,9 +12406,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ShippingPriorityLevelCode() As ShippingPriorityLevelCodeType Get Return Me.shippingPriorityLevelCodeField @@ -12417,9 +12417,9 @@ Namespace Peppol.BISBilling30Invoice Me.shippingPriorityLevelCodeField = value End Set End Property - + ''' - _ + Public Property HandlingCode() As HandlingCodeType Get Return Me.handlingCodeField @@ -12428,9 +12428,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingCodeField = value End Set End Property - + ''' - _ + Public Property HandlingInstructions() As HandlingInstructionsType() Get Return Me.handlingInstructionsField @@ -12439,9 +12439,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingInstructionsField = value End Set End Property - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -12450,9 +12450,9 @@ Namespace Peppol.BISBilling30Invoice Me.informationField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -12461,9 +12461,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -12472,9 +12472,9 @@ Namespace Peppol.BISBilling30Invoice Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetNetWeightMeasure() As NetNetWeightMeasureType Get Return Me.netNetWeightMeasureField @@ -12483,9 +12483,9 @@ Namespace Peppol.BISBilling30Invoice Me.netNetWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -12494,9 +12494,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -12505,9 +12505,9 @@ Namespace Peppol.BISBilling30Invoice Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property TotalGoodsItemQuantity() As TotalGoodsItemQuantityType Get Return Me.totalGoodsItemQuantityField @@ -12516,9 +12516,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalGoodsItemQuantityField = value End Set End Property - + ''' - _ + Public Property TotalTransportHandlingUnitQuantity() As TotalTransportHandlingUnitQuantityType Get Return Me.totalTransportHandlingUnitQuantityField @@ -12527,9 +12527,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalTransportHandlingUnitQuantityField = value End Set End Property - + ''' - _ + Public Property InsuranceValueAmount() As InsuranceValueAmountType Get Return Me.insuranceValueAmountField @@ -12538,9 +12538,9 @@ Namespace Peppol.BISBilling30Invoice Me.insuranceValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredCustomsValueAmount() As DeclaredCustomsValueAmountType Get Return Me.declaredCustomsValueAmountField @@ -12549,9 +12549,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredCustomsValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredForCarriageValueAmount() As DeclaredForCarriageValueAmountType Get Return Me.declaredForCarriageValueAmountField @@ -12560,9 +12560,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredForCarriageValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredStatisticsValueAmount() As DeclaredStatisticsValueAmountType Get Return Me.declaredStatisticsValueAmountField @@ -12571,9 +12571,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredStatisticsValueAmountField = value End Set End Property - + ''' - _ + Public Property FreeOnBoardValueAmount() As FreeOnBoardValueAmountType Get Return Me.freeOnBoardValueAmountField @@ -12582,9 +12582,9 @@ Namespace Peppol.BISBilling30Invoice Me.freeOnBoardValueAmountField = value End Set End Property - + ''' - _ + Public Property SpecialInstructions() As SpecialInstructionsType() Get Return Me.specialInstructionsField @@ -12593,9 +12593,9 @@ Namespace Peppol.BISBilling30Invoice Me.specialInstructionsField = value End Set End Property - + ''' - _ + Public Property DeliveryInstructions() As DeliveryInstructionsType() Get Return Me.deliveryInstructionsField @@ -12604,9 +12604,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryInstructionsField = value End Set End Property - + ''' - _ + Public Property SplitConsignmentIndicator() As SplitConsignmentIndicatorType Get Return Me.splitConsignmentIndicatorField @@ -12615,9 +12615,9 @@ Namespace Peppol.BISBilling30Invoice Me.splitConsignmentIndicatorField = value End Set End Property - + ''' - _ + Public Property ConsignmentQuantity() As ConsignmentQuantityType Get Return Me.consignmentQuantityField @@ -12626,9 +12626,9 @@ Namespace Peppol.BISBilling30Invoice Me.consignmentQuantityField = value End Set End Property - + ''' - _ + Public Property Consignment() As ConsignmentType() Get Return Me.consignmentField @@ -12637,9 +12637,9 @@ Namespace Peppol.BISBilling30Invoice Me.consignmentField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -12648,9 +12648,9 @@ Namespace Peppol.BISBilling30Invoice Me.goodsItemField = value End Set End Property - + ''' - _ + Public Property ShipmentStage() As ShipmentStageType() Get Return Me.shipmentStageField @@ -12659,7 +12659,7 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentStageField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -12669,9 +12669,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' - _ + Public Property TransportHandlingUnit() As TransportHandlingUnitType() Get Return Me.transportHandlingUnitField @@ -12680,7 +12680,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportHandlingUnitField = value End Set End Property - + ''' Public Property ReturnAddress() As AddressType Get @@ -12690,7 +12690,7 @@ Namespace Peppol.BISBilling30Invoice Me.returnAddressField = value End Set End Property - + ''' Public Property OriginAddress() As AddressType Get @@ -12700,7 +12700,7 @@ Namespace Peppol.BISBilling30Invoice Me.originAddressField = value End Set End Property - + ''' Public Property FirstArrivalPortLocation() As LocationType1 Get @@ -12710,7 +12710,7 @@ Namespace Peppol.BISBilling30Invoice Me.firstArrivalPortLocationField = value End Set End Property - + ''' Public Property LastExitPortLocation() As LocationType1 Get @@ -12720,7 +12720,7 @@ Namespace Peppol.BISBilling30Invoice Me.lastExitPortLocationField = value End Set End Property - + ''' Public Property ExportCountry() As CountryType Get @@ -12730,9 +12730,9 @@ Namespace Peppol.BISBilling30Invoice Me.exportCountryField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -12742,218 +12742,218 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsignmentType - + Private idField As IDType - + Private carrierAssignedIDField As CarrierAssignedIDType - + Private consigneeAssignedIDField As ConsigneeAssignedIDType - + Private consignorAssignedIDField As ConsignorAssignedIDType - + Private freightForwarderAssignedIDField As FreightForwarderAssignedIDType - + Private brokerAssignedIDField As BrokerAssignedIDType - + Private contractedCarrierAssignedIDField As ContractedCarrierAssignedIDType - + Private performingCarrierAssignedIDField As PerformingCarrierAssignedIDType - + Private summaryDescriptionField() As SummaryDescriptionType - + Private totalInvoiceAmountField As TotalInvoiceAmountType - + Private declaredCustomsValueAmountField As DeclaredCustomsValueAmountType - + Private tariffDescriptionField() As TariffDescriptionType - + Private tariffCodeField As TariffCodeType - + Private insurancePremiumAmountField As InsurancePremiumAmountType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netNetWeightMeasureField As NetNetWeightMeasureType - + Private chargeableWeightMeasureField As ChargeableWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private loadingLengthMeasureField As LoadingLengthMeasureType - + Private remarksField() As RemarksType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private animalFoodIndicatorField As AnimalFoodIndicatorType - + Private humanFoodIndicatorField As HumanFoodIndicatorType - + Private livestockIndicatorField As LivestockIndicatorType - + Private bulkCargoIndicatorField As BulkCargoIndicatorType - + Private containerizedIndicatorField As ContainerizedIndicatorType - + Private generalCargoIndicatorField As GeneralCargoIndicatorType - + Private specialSecurityIndicatorField As SpecialSecurityIndicatorType - + Private thirdPartyPayerIndicatorField As ThirdPartyPayerIndicatorType - + Private carrierServiceInstructionsField() As CarrierServiceInstructionsType - + Private customsClearanceServiceInstructionsField() As CustomsClearanceServiceInstructionsType - + Private forwarderServiceInstructionsField() As ForwarderServiceInstructionsType - + Private specialServiceInstructionsField() As SpecialServiceInstructionsType - + Private sequenceIDField As SequenceIDType - + Private shippingPriorityLevelCodeField As ShippingPriorityLevelCodeType - + Private handlingCodeField As HandlingCodeType - + Private handlingInstructionsField() As HandlingInstructionsType - + Private informationField() As InformationType - + Private totalGoodsItemQuantityField As TotalGoodsItemQuantityType - + Private totalTransportHandlingUnitQuantityField As TotalTransportHandlingUnitQuantityType - + Private insuranceValueAmountField As InsuranceValueAmountType - + Private declaredForCarriageValueAmountField As DeclaredForCarriageValueAmountType - + Private declaredStatisticsValueAmountField As DeclaredStatisticsValueAmountType - + Private freeOnBoardValueAmountField As FreeOnBoardValueAmountType - + Private specialInstructionsField() As SpecialInstructionsType - + Private splitConsignmentIndicatorField As SplitConsignmentIndicatorType - + Private deliveryInstructionsField() As DeliveryInstructionsType - + Private consignmentQuantityField As ConsignmentQuantityType - + Private consolidatableIndicatorField As ConsolidatableIndicatorType - + Private haulageInstructionsField() As HaulageInstructionsType - + Private loadingSequenceIDField As LoadingSequenceIDType - + Private childConsignmentQuantityField As ChildConsignmentQuantityType - + Private totalPackagesQuantityField As TotalPackagesQuantityType - + Private consolidatedShipmentField() As ShipmentType - + Private customsDeclarationField() As CustomsDeclarationType - + Private requestedPickupTransportEventField As TransportEventType - + Private requestedDeliveryTransportEventField As TransportEventType - + Private plannedPickupTransportEventField As TransportEventType - + Private plannedDeliveryTransportEventField As TransportEventType - + Private statusField() As StatusType - + Private childConsignmentField() As ConsignmentType - + Private consigneePartyField As PartyType - + Private exporterPartyField As PartyType - + Private consignorPartyField As PartyType - + Private importerPartyField As PartyType - + Private carrierPartyField As PartyType - + Private freightForwarderPartyField As PartyType - + Private notifyPartyField As PartyType - + Private originalDespatchPartyField As PartyType - + Private finalDeliveryPartyField As PartyType - + Private performingCarrierPartyField As PartyType - + Private substituteCarrierPartyField As PartyType - + Private logisticsOperatorPartyField As PartyType - + Private transportAdvisorPartyField As PartyType - + Private hazardousItemNotificationPartyField As PartyType - + Private insurancePartyField As PartyType - + Private mortgageHolderPartyField As PartyType - + Private billOfLadingHolderPartyField As PartyType - + Private originalDepartureCountryField As CountryType - + Private finalDestinationCountryField As CountryType - + Private transitCountryField() As CountryType - + Private transportContractField As ContractType - + Private transportEventField() As TransportEventType - + Private originalDespatchTransportationServiceField As TransportationServiceType - + Private finalDeliveryTransportationServiceField As TransportationServiceType - + Private deliveryTermsField As DeliveryTermsType - + Private paymentTermsField As PaymentTermsType - + Private collectPaymentTermsField As PaymentTermsType - + Private disbursementPaymentTermsField As PaymentTermsType - + Private prepaidPaymentTermsField As PaymentTermsType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private extraAllowanceChargeField() As AllowanceChargeType - + Private mainCarriageShipmentStageField() As ShipmentStageType - + Private preCarriageShipmentStageField() As ShipmentStageType - + Private onCarriageShipmentStageField() As ShipmentStageType - + Private transportHandlingUnitField() As TransportHandlingUnitType - + Private firstArrivalPortLocationField As LocationType1 - + Private lastExitPortLocationField As LocationType1 - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -12962,9 +12962,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property CarrierAssignedID() As CarrierAssignedIDType Get Return Me.carrierAssignedIDField @@ -12973,9 +12973,9 @@ Namespace Peppol.BISBilling30Invoice Me.carrierAssignedIDField = value End Set End Property - + ''' - _ + Public Property ConsigneeAssignedID() As ConsigneeAssignedIDType Get Return Me.consigneeAssignedIDField @@ -12984,9 +12984,9 @@ Namespace Peppol.BISBilling30Invoice Me.consigneeAssignedIDField = value End Set End Property - + ''' - _ + Public Property ConsignorAssignedID() As ConsignorAssignedIDType Get Return Me.consignorAssignedIDField @@ -12995,9 +12995,9 @@ Namespace Peppol.BISBilling30Invoice Me.consignorAssignedIDField = value End Set End Property - + ''' - _ + Public Property FreightForwarderAssignedID() As FreightForwarderAssignedIDType Get Return Me.freightForwarderAssignedIDField @@ -13006,9 +13006,9 @@ Namespace Peppol.BISBilling30Invoice Me.freightForwarderAssignedIDField = value End Set End Property - + ''' - _ + Public Property BrokerAssignedID() As BrokerAssignedIDType Get Return Me.brokerAssignedIDField @@ -13017,9 +13017,9 @@ Namespace Peppol.BISBilling30Invoice Me.brokerAssignedIDField = value End Set End Property - + ''' - _ + Public Property ContractedCarrierAssignedID() As ContractedCarrierAssignedIDType Get Return Me.contractedCarrierAssignedIDField @@ -13028,9 +13028,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractedCarrierAssignedIDField = value End Set End Property - + ''' - _ + Public Property PerformingCarrierAssignedID() As PerformingCarrierAssignedIDType Get Return Me.performingCarrierAssignedIDField @@ -13039,9 +13039,9 @@ Namespace Peppol.BISBilling30Invoice Me.performingCarrierAssignedIDField = value End Set End Property - + ''' - _ + Public Property SummaryDescription() As SummaryDescriptionType() Get Return Me.summaryDescriptionField @@ -13050,9 +13050,9 @@ Namespace Peppol.BISBilling30Invoice Me.summaryDescriptionField = value End Set End Property - + ''' - _ + Public Property TotalInvoiceAmount() As TotalInvoiceAmountType Get Return Me.totalInvoiceAmountField @@ -13061,9 +13061,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalInvoiceAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredCustomsValueAmount() As DeclaredCustomsValueAmountType Get Return Me.declaredCustomsValueAmountField @@ -13072,9 +13072,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredCustomsValueAmountField = value End Set End Property - + ''' - _ + Public Property TariffDescription() As TariffDescriptionType() Get Return Me.tariffDescriptionField @@ -13083,9 +13083,9 @@ Namespace Peppol.BISBilling30Invoice Me.tariffDescriptionField = value End Set End Property - + ''' - _ + Public Property TariffCode() As TariffCodeType Get Return Me.tariffCodeField @@ -13094,9 +13094,9 @@ Namespace Peppol.BISBilling30Invoice Me.tariffCodeField = value End Set End Property - + ''' - _ + Public Property InsurancePremiumAmount() As InsurancePremiumAmountType Get Return Me.insurancePremiumAmountField @@ -13105,9 +13105,9 @@ Namespace Peppol.BISBilling30Invoice Me.insurancePremiumAmountField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -13116,9 +13116,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -13127,9 +13127,9 @@ Namespace Peppol.BISBilling30Invoice Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetNetWeightMeasure() As NetNetWeightMeasureType Get Return Me.netNetWeightMeasureField @@ -13138,9 +13138,9 @@ Namespace Peppol.BISBilling30Invoice Me.netNetWeightMeasureField = value End Set End Property - + ''' - _ + Public Property ChargeableWeightMeasure() As ChargeableWeightMeasureType Get Return Me.chargeableWeightMeasureField @@ -13149,9 +13149,9 @@ Namespace Peppol.BISBilling30Invoice Me.chargeableWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -13160,9 +13160,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -13171,9 +13171,9 @@ Namespace Peppol.BISBilling30Invoice Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property LoadingLengthMeasure() As LoadingLengthMeasureType Get Return Me.loadingLengthMeasureField @@ -13182,9 +13182,9 @@ Namespace Peppol.BISBilling30Invoice Me.loadingLengthMeasureField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -13193,9 +13193,9 @@ Namespace Peppol.BISBilling30Invoice Me.remarksField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -13204,9 +13204,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property AnimalFoodIndicator() As AnimalFoodIndicatorType Get Return Me.animalFoodIndicatorField @@ -13215,9 +13215,9 @@ Namespace Peppol.BISBilling30Invoice Me.animalFoodIndicatorField = value End Set End Property - + ''' - _ + Public Property HumanFoodIndicator() As HumanFoodIndicatorType Get Return Me.humanFoodIndicatorField @@ -13226,9 +13226,9 @@ Namespace Peppol.BISBilling30Invoice Me.humanFoodIndicatorField = value End Set End Property - + ''' - _ + Public Property LivestockIndicator() As LivestockIndicatorType Get Return Me.livestockIndicatorField @@ -13237,9 +13237,9 @@ Namespace Peppol.BISBilling30Invoice Me.livestockIndicatorField = value End Set End Property - + ''' - _ + Public Property BulkCargoIndicator() As BulkCargoIndicatorType Get Return Me.bulkCargoIndicatorField @@ -13248,9 +13248,9 @@ Namespace Peppol.BISBilling30Invoice Me.bulkCargoIndicatorField = value End Set End Property - + ''' - _ + Public Property ContainerizedIndicator() As ContainerizedIndicatorType Get Return Me.containerizedIndicatorField @@ -13259,9 +13259,9 @@ Namespace Peppol.BISBilling30Invoice Me.containerizedIndicatorField = value End Set End Property - + ''' - _ + Public Property GeneralCargoIndicator() As GeneralCargoIndicatorType Get Return Me.generalCargoIndicatorField @@ -13270,9 +13270,9 @@ Namespace Peppol.BISBilling30Invoice Me.generalCargoIndicatorField = value End Set End Property - + ''' - _ + Public Property SpecialSecurityIndicator() As SpecialSecurityIndicatorType Get Return Me.specialSecurityIndicatorField @@ -13281,9 +13281,9 @@ Namespace Peppol.BISBilling30Invoice Me.specialSecurityIndicatorField = value End Set End Property - + ''' - _ + Public Property ThirdPartyPayerIndicator() As ThirdPartyPayerIndicatorType Get Return Me.thirdPartyPayerIndicatorField @@ -13292,9 +13292,9 @@ Namespace Peppol.BISBilling30Invoice Me.thirdPartyPayerIndicatorField = value End Set End Property - + ''' - _ + Public Property CarrierServiceInstructions() As CarrierServiceInstructionsType() Get Return Me.carrierServiceInstructionsField @@ -13303,9 +13303,9 @@ Namespace Peppol.BISBilling30Invoice Me.carrierServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property CustomsClearanceServiceInstructions() As CustomsClearanceServiceInstructionsType() Get Return Me.customsClearanceServiceInstructionsField @@ -13314,9 +13314,9 @@ Namespace Peppol.BISBilling30Invoice Me.customsClearanceServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property ForwarderServiceInstructions() As ForwarderServiceInstructionsType() Get Return Me.forwarderServiceInstructionsField @@ -13325,9 +13325,9 @@ Namespace Peppol.BISBilling30Invoice Me.forwarderServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property SpecialServiceInstructions() As SpecialServiceInstructionsType() Get Return Me.specialServiceInstructionsField @@ -13336,9 +13336,9 @@ Namespace Peppol.BISBilling30Invoice Me.specialServiceInstructionsField = value End Set End Property - + ''' - _ + Public Property SequenceID() As SequenceIDType Get Return Me.sequenceIDField @@ -13347,9 +13347,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceIDField = value End Set End Property - + ''' - _ + Public Property ShippingPriorityLevelCode() As ShippingPriorityLevelCodeType Get Return Me.shippingPriorityLevelCodeField @@ -13358,9 +13358,9 @@ Namespace Peppol.BISBilling30Invoice Me.shippingPriorityLevelCodeField = value End Set End Property - + ''' - _ + Public Property HandlingCode() As HandlingCodeType Get Return Me.handlingCodeField @@ -13369,9 +13369,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingCodeField = value End Set End Property - + ''' - _ + Public Property HandlingInstructions() As HandlingInstructionsType() Get Return Me.handlingInstructionsField @@ -13380,9 +13380,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingInstructionsField = value End Set End Property - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -13391,9 +13391,9 @@ Namespace Peppol.BISBilling30Invoice Me.informationField = value End Set End Property - + ''' - _ + Public Property TotalGoodsItemQuantity() As TotalGoodsItemQuantityType Get Return Me.totalGoodsItemQuantityField @@ -13402,9 +13402,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalGoodsItemQuantityField = value End Set End Property - + ''' - _ + Public Property TotalTransportHandlingUnitQuantity() As TotalTransportHandlingUnitQuantityType Get Return Me.totalTransportHandlingUnitQuantityField @@ -13413,9 +13413,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalTransportHandlingUnitQuantityField = value End Set End Property - + ''' - _ + Public Property InsuranceValueAmount() As InsuranceValueAmountType Get Return Me.insuranceValueAmountField @@ -13424,9 +13424,9 @@ Namespace Peppol.BISBilling30Invoice Me.insuranceValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredForCarriageValueAmount() As DeclaredForCarriageValueAmountType Get Return Me.declaredForCarriageValueAmountField @@ -13435,9 +13435,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredForCarriageValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredStatisticsValueAmount() As DeclaredStatisticsValueAmountType Get Return Me.declaredStatisticsValueAmountField @@ -13446,9 +13446,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredStatisticsValueAmountField = value End Set End Property - + ''' - _ + Public Property FreeOnBoardValueAmount() As FreeOnBoardValueAmountType Get Return Me.freeOnBoardValueAmountField @@ -13457,9 +13457,9 @@ Namespace Peppol.BISBilling30Invoice Me.freeOnBoardValueAmountField = value End Set End Property - + ''' - _ + Public Property SpecialInstructions() As SpecialInstructionsType() Get Return Me.specialInstructionsField @@ -13468,9 +13468,9 @@ Namespace Peppol.BISBilling30Invoice Me.specialInstructionsField = value End Set End Property - + ''' - _ + Public Property SplitConsignmentIndicator() As SplitConsignmentIndicatorType Get Return Me.splitConsignmentIndicatorField @@ -13479,9 +13479,9 @@ Namespace Peppol.BISBilling30Invoice Me.splitConsignmentIndicatorField = value End Set End Property - + ''' - _ + Public Property DeliveryInstructions() As DeliveryInstructionsType() Get Return Me.deliveryInstructionsField @@ -13490,9 +13490,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryInstructionsField = value End Set End Property - + ''' - _ + Public Property ConsignmentQuantity() As ConsignmentQuantityType Get Return Me.consignmentQuantityField @@ -13501,9 +13501,9 @@ Namespace Peppol.BISBilling30Invoice Me.consignmentQuantityField = value End Set End Property - + ''' - _ + Public Property ConsolidatableIndicator() As ConsolidatableIndicatorType Get Return Me.consolidatableIndicatorField @@ -13512,9 +13512,9 @@ Namespace Peppol.BISBilling30Invoice Me.consolidatableIndicatorField = value End Set End Property - + ''' - _ + Public Property HaulageInstructions() As HaulageInstructionsType() Get Return Me.haulageInstructionsField @@ -13523,9 +13523,9 @@ Namespace Peppol.BISBilling30Invoice Me.haulageInstructionsField = value End Set End Property - + ''' - _ + Public Property LoadingSequenceID() As LoadingSequenceIDType Get Return Me.loadingSequenceIDField @@ -13534,9 +13534,9 @@ Namespace Peppol.BISBilling30Invoice Me.loadingSequenceIDField = value End Set End Property - + ''' - _ + Public Property ChildConsignmentQuantity() As ChildConsignmentQuantityType Get Return Me.childConsignmentQuantityField @@ -13545,9 +13545,9 @@ Namespace Peppol.BISBilling30Invoice Me.childConsignmentQuantityField = value End Set End Property - + ''' - _ + Public Property TotalPackagesQuantity() As TotalPackagesQuantityType Get Return Me.totalPackagesQuantityField @@ -13556,9 +13556,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalPackagesQuantityField = value End Set End Property - + ''' - _ + Public Property ConsolidatedShipment() As ShipmentType() Get Return Me.consolidatedShipmentField @@ -13567,9 +13567,9 @@ Namespace Peppol.BISBilling30Invoice Me.consolidatedShipmentField = value End Set End Property - + ''' - _ + Public Property CustomsDeclaration() As CustomsDeclarationType() Get Return Me.customsDeclarationField @@ -13578,7 +13578,7 @@ Namespace Peppol.BISBilling30Invoice Me.customsDeclarationField = value End Set End Property - + ''' Public Property RequestedPickupTransportEvent() As TransportEventType Get @@ -13588,7 +13588,7 @@ Namespace Peppol.BISBilling30Invoice Me.requestedPickupTransportEventField = value End Set End Property - + ''' Public Property RequestedDeliveryTransportEvent() As TransportEventType Get @@ -13598,7 +13598,7 @@ Namespace Peppol.BISBilling30Invoice Me.requestedDeliveryTransportEventField = value End Set End Property - + ''' Public Property PlannedPickupTransportEvent() As TransportEventType Get @@ -13608,7 +13608,7 @@ Namespace Peppol.BISBilling30Invoice Me.plannedPickupTransportEventField = value End Set End Property - + ''' Public Property PlannedDeliveryTransportEvent() As TransportEventType Get @@ -13618,9 +13618,9 @@ Namespace Peppol.BISBilling30Invoice Me.plannedDeliveryTransportEventField = value End Set End Property - + ''' - _ + Public Property Status() As StatusType() Get Return Me.statusField @@ -13629,9 +13629,9 @@ Namespace Peppol.BISBilling30Invoice Me.statusField = value End Set End Property - + ''' - _ + Public Property ChildConsignment() As ConsignmentType() Get Return Me.childConsignmentField @@ -13640,7 +13640,7 @@ Namespace Peppol.BISBilling30Invoice Me.childConsignmentField = value End Set End Property - + ''' Public Property ConsigneeParty() As PartyType Get @@ -13650,7 +13650,7 @@ Namespace Peppol.BISBilling30Invoice Me.consigneePartyField = value End Set End Property - + ''' Public Property ExporterParty() As PartyType Get @@ -13660,7 +13660,7 @@ Namespace Peppol.BISBilling30Invoice Me.exporterPartyField = value End Set End Property - + ''' Public Property ConsignorParty() As PartyType Get @@ -13670,7 +13670,7 @@ Namespace Peppol.BISBilling30Invoice Me.consignorPartyField = value End Set End Property - + ''' Public Property ImporterParty() As PartyType Get @@ -13680,7 +13680,7 @@ Namespace Peppol.BISBilling30Invoice Me.importerPartyField = value End Set End Property - + ''' Public Property CarrierParty() As PartyType Get @@ -13690,7 +13690,7 @@ Namespace Peppol.BISBilling30Invoice Me.carrierPartyField = value End Set End Property - + ''' Public Property FreightForwarderParty() As PartyType Get @@ -13700,7 +13700,7 @@ Namespace Peppol.BISBilling30Invoice Me.freightForwarderPartyField = value End Set End Property - + ''' Public Property NotifyParty() As PartyType Get @@ -13710,7 +13710,7 @@ Namespace Peppol.BISBilling30Invoice Me.notifyPartyField = value End Set End Property - + ''' Public Property OriginalDespatchParty() As PartyType Get @@ -13720,7 +13720,7 @@ Namespace Peppol.BISBilling30Invoice Me.originalDespatchPartyField = value End Set End Property - + ''' Public Property FinalDeliveryParty() As PartyType Get @@ -13730,7 +13730,7 @@ Namespace Peppol.BISBilling30Invoice Me.finalDeliveryPartyField = value End Set End Property - + ''' Public Property PerformingCarrierParty() As PartyType Get @@ -13740,7 +13740,7 @@ Namespace Peppol.BISBilling30Invoice Me.performingCarrierPartyField = value End Set End Property - + ''' Public Property SubstituteCarrierParty() As PartyType Get @@ -13750,7 +13750,7 @@ Namespace Peppol.BISBilling30Invoice Me.substituteCarrierPartyField = value End Set End Property - + ''' Public Property LogisticsOperatorParty() As PartyType Get @@ -13760,7 +13760,7 @@ Namespace Peppol.BISBilling30Invoice Me.logisticsOperatorPartyField = value End Set End Property - + ''' Public Property TransportAdvisorParty() As PartyType Get @@ -13770,7 +13770,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportAdvisorPartyField = value End Set End Property - + ''' Public Property HazardousItemNotificationParty() As PartyType Get @@ -13780,7 +13780,7 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousItemNotificationPartyField = value End Set End Property - + ''' Public Property InsuranceParty() As PartyType Get @@ -13790,7 +13790,7 @@ Namespace Peppol.BISBilling30Invoice Me.insurancePartyField = value End Set End Property - + ''' Public Property MortgageHolderParty() As PartyType Get @@ -13800,7 +13800,7 @@ Namespace Peppol.BISBilling30Invoice Me.mortgageHolderPartyField = value End Set End Property - + ''' Public Property BillOfLadingHolderParty() As PartyType Get @@ -13810,7 +13810,7 @@ Namespace Peppol.BISBilling30Invoice Me.billOfLadingHolderPartyField = value End Set End Property - + ''' Public Property OriginalDepartureCountry() As CountryType Get @@ -13820,7 +13820,7 @@ Namespace Peppol.BISBilling30Invoice Me.originalDepartureCountryField = value End Set End Property - + ''' Public Property FinalDestinationCountry() As CountryType Get @@ -13830,9 +13830,9 @@ Namespace Peppol.BISBilling30Invoice Me.finalDestinationCountryField = value End Set End Property - + ''' - _ + Public Property TransitCountry() As CountryType() Get Return Me.transitCountryField @@ -13841,7 +13841,7 @@ Namespace Peppol.BISBilling30Invoice Me.transitCountryField = value End Set End Property - + ''' Public Property TransportContract() As ContractType Get @@ -13851,9 +13851,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportContractField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -13862,7 +13862,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportEventField = value End Set End Property - + ''' Public Property OriginalDespatchTransportationService() As TransportationServiceType Get @@ -13872,7 +13872,7 @@ Namespace Peppol.BISBilling30Invoice Me.originalDespatchTransportationServiceField = value End Set End Property - + ''' Public Property FinalDeliveryTransportationService() As TransportationServiceType Get @@ -13882,7 +13882,7 @@ Namespace Peppol.BISBilling30Invoice Me.finalDeliveryTransportationServiceField = value End Set End Property - + ''' Public Property DeliveryTerms() As DeliveryTermsType Get @@ -13892,7 +13892,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' Public Property PaymentTerms() As PaymentTermsType Get @@ -13902,7 +13902,7 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' Public Property CollectPaymentTerms() As PaymentTermsType Get @@ -13912,7 +13912,7 @@ Namespace Peppol.BISBilling30Invoice Me.collectPaymentTermsField = value End Set End Property - + ''' Public Property DisbursementPaymentTerms() As PaymentTermsType Get @@ -13922,7 +13922,7 @@ Namespace Peppol.BISBilling30Invoice Me.disbursementPaymentTermsField = value End Set End Property - + ''' Public Property PrepaidPaymentTerms() As PaymentTermsType Get @@ -13932,9 +13932,9 @@ Namespace Peppol.BISBilling30Invoice Me.prepaidPaymentTermsField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -13943,9 +13943,9 @@ Namespace Peppol.BISBilling30Invoice Me.freightAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property ExtraAllowanceCharge() As AllowanceChargeType() Get Return Me.extraAllowanceChargeField @@ -13954,9 +13954,9 @@ Namespace Peppol.BISBilling30Invoice Me.extraAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property MainCarriageShipmentStage() As ShipmentStageType() Get Return Me.mainCarriageShipmentStageField @@ -13965,9 +13965,9 @@ Namespace Peppol.BISBilling30Invoice Me.mainCarriageShipmentStageField = value End Set End Property - + ''' - _ + Public Property PreCarriageShipmentStage() As ShipmentStageType() Get Return Me.preCarriageShipmentStageField @@ -13976,9 +13976,9 @@ Namespace Peppol.BISBilling30Invoice Me.preCarriageShipmentStageField = value End Set End Property - + ''' - _ + Public Property OnCarriageShipmentStage() As ShipmentStageType() Get Return Me.onCarriageShipmentStageField @@ -13987,9 +13987,9 @@ Namespace Peppol.BISBilling30Invoice Me.onCarriageShipmentStageField = value End Set End Property - + ''' - _ + Public Property TransportHandlingUnit() As TransportHandlingUnitType() Get Return Me.transportHandlingUnitField @@ -13998,7 +13998,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportHandlingUnitField = value End Set End Property - + ''' Public Property FirstArrivalPortLocation() As LocationType1 Get @@ -14008,7 +14008,7 @@ Namespace Peppol.BISBilling30Invoice Me.firstArrivalPortLocationField = value End Set End Property - + ''' Public Property LastExitPortLocation() As LocationType1 Get @@ -14019,22 +14019,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CustomsDeclarationType - + Private idField As IDType - + Private issuerPartyField As PartyType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14043,7 +14043,7 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -14054,56 +14054,56 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PartyType - + Private markCareIndicatorField As MarkCareIndicatorType - + Private markAttentionIndicatorField As MarkAttentionIndicatorType - + Private websiteURIField As WebsiteURIType - + Private logoReferenceIDField As LogoReferenceIDType - + Private endpointIDField As EndpointIDType - + Private industryClassificationCodeField As IndustryClassificationCodeType - + Private partyIdentificationField() As PartyIdentificationType - + Private partyNameField() As PartyNameType - + Private languageField As LanguageType - + Private postalAddressField As AddressType - + Private physicalLocationField As LocationType1 - + Private partyTaxSchemeField() As PartyTaxSchemeType - + Private partyLegalEntityField() As PartyLegalEntityType - + Private contactField As ContactType - + Private personField() As PersonType - + Private agentPartyField As PartyType - + Private serviceProviderPartyField() As ServiceProviderPartyType - + Private powerOfAttorneyField() As PowerOfAttorneyType - + Private financialAccountField As FinancialAccountType - + ''' - _ + Public Property MarkCareIndicator() As MarkCareIndicatorType Get Return Me.markCareIndicatorField @@ -14112,9 +14112,9 @@ Namespace Peppol.BISBilling30Invoice Me.markCareIndicatorField = value End Set End Property - + ''' - _ + Public Property MarkAttentionIndicator() As MarkAttentionIndicatorType Get Return Me.markAttentionIndicatorField @@ -14123,9 +14123,9 @@ Namespace Peppol.BISBilling30Invoice Me.markAttentionIndicatorField = value End Set End Property - + ''' - _ + Public Property WebsiteURI() As WebsiteURIType Get Return Me.websiteURIField @@ -14134,9 +14134,9 @@ Namespace Peppol.BISBilling30Invoice Me.websiteURIField = value End Set End Property - + ''' - _ + Public Property LogoReferenceID() As LogoReferenceIDType Get Return Me.logoReferenceIDField @@ -14145,9 +14145,9 @@ Namespace Peppol.BISBilling30Invoice Me.logoReferenceIDField = value End Set End Property - + ''' - _ + Public Property EndpointID() As EndpointIDType Get Return Me.endpointIDField @@ -14156,9 +14156,9 @@ Namespace Peppol.BISBilling30Invoice Me.endpointIDField = value End Set End Property - + ''' - _ + Public Property IndustryClassificationCode() As IndustryClassificationCodeType Get Return Me.industryClassificationCodeField @@ -14167,9 +14167,9 @@ Namespace Peppol.BISBilling30Invoice Me.industryClassificationCodeField = value End Set End Property - + ''' - _ + Public Property PartyIdentification() As PartyIdentificationType() Get Return Me.partyIdentificationField @@ -14178,9 +14178,9 @@ Namespace Peppol.BISBilling30Invoice Me.partyIdentificationField = value End Set End Property - + ''' - _ + Public Property PartyName() As PartyNameType() Get Return Me.partyNameField @@ -14189,7 +14189,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyNameField = value End Set End Property - + ''' Public Property Language() As LanguageType Get @@ -14199,7 +14199,7 @@ Namespace Peppol.BISBilling30Invoice Me.languageField = value End Set End Property - + ''' Public Property PostalAddress() As AddressType Get @@ -14209,7 +14209,7 @@ Namespace Peppol.BISBilling30Invoice Me.postalAddressField = value End Set End Property - + ''' Public Property PhysicalLocation() As LocationType1 Get @@ -14219,9 +14219,9 @@ Namespace Peppol.BISBilling30Invoice Me.physicalLocationField = value End Set End Property - + ''' - _ + Public Property PartyTaxScheme() As PartyTaxSchemeType() Get Return Me.partyTaxSchemeField @@ -14230,9 +14230,9 @@ Namespace Peppol.BISBilling30Invoice Me.partyTaxSchemeField = value End Set End Property - + ''' - _ + Public Property PartyLegalEntity() As PartyLegalEntityType() Get Return Me.partyLegalEntityField @@ -14241,7 +14241,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyLegalEntityField = value End Set End Property - + ''' Public Property Contact() As ContactType Get @@ -14251,9 +14251,9 @@ Namespace Peppol.BISBilling30Invoice Me.contactField = value End Set End Property - + ''' - _ + Public Property Person() As PersonType() Get Return Me.personField @@ -14262,7 +14262,7 @@ Namespace Peppol.BISBilling30Invoice Me.personField = value End Set End Property - + ''' Public Property AgentParty() As PartyType Get @@ -14272,9 +14272,9 @@ Namespace Peppol.BISBilling30Invoice Me.agentPartyField = value End Set End Property - + ''' - _ + Public Property ServiceProviderParty() As ServiceProviderPartyType() Get Return Me.serviceProviderPartyField @@ -14283,9 +14283,9 @@ Namespace Peppol.BISBilling30Invoice Me.serviceProviderPartyField = value End Set End Property - + ''' - _ + Public Property PowerOfAttorney() As PowerOfAttorneyType() Get Return Me.powerOfAttorneyField @@ -14294,7 +14294,7 @@ Namespace Peppol.BISBilling30Invoice Me.powerOfAttorneyField = value End Set End Property - + ''' Public Property FinancialAccount() As FinancialAccountType Get @@ -14305,20 +14305,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PartyIdentificationType - + Private idField As IDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14328,20 +14328,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PartyNameType - + Private nameField As NameType1 - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -14351,24 +14351,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LanguageType - + Private idField As IDType - + Private nameField As NameType1 - + Private localeCodeField As LocaleCodeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14377,9 +14377,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -14388,9 +14388,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property LocaleCode() As LocaleCodeType Get Return Me.localeCodeField @@ -14400,72 +14400,72 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AddressType - + Private idField As IDType - + Private addressTypeCodeField As AddressTypeCodeType - + Private addressFormatCodeField As AddressFormatCodeType - + Private postboxField As PostboxType - + Private floorField As FloorType - + Private roomField As RoomType - + Private streetNameField As StreetNameType - + Private additionalStreetNameField As AdditionalStreetNameType - + Private blockNameField As BlockNameType - + Private buildingNameField As BuildingNameType - + Private buildingNumberField As BuildingNumberType - + Private inhouseMailField As InhouseMailType - + Private departmentField As DepartmentType - + Private markAttentionField As MarkAttentionType - + Private markCareField As MarkCareType - + Private plotIdentificationField As PlotIdentificationType - + Private citySubdivisionNameField As CitySubdivisionNameType - + Private cityNameField As CityNameType - + Private postalZoneField As PostalZoneType - + Private countrySubentityField As CountrySubentityType - + Private countrySubentityCodeField As CountrySubentityCodeType - + Private regionField As RegionType - + Private districtField As DistrictType - + Private timezoneOffsetField As TimezoneOffsetType - + Private addressLineField() As AddressLineType - + Private countryField As CountryType - + Private locationCoordinateField() As LocationCoordinateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14474,9 +14474,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property AddressTypeCode() As AddressTypeCodeType Get Return Me.addressTypeCodeField @@ -14485,9 +14485,9 @@ Namespace Peppol.BISBilling30Invoice Me.addressTypeCodeField = value End Set End Property - + ''' - _ + Public Property AddressFormatCode() As AddressFormatCodeType Get Return Me.addressFormatCodeField @@ -14496,9 +14496,9 @@ Namespace Peppol.BISBilling30Invoice Me.addressFormatCodeField = value End Set End Property - + ''' - _ + Public Property Postbox() As PostboxType Get Return Me.postboxField @@ -14507,9 +14507,9 @@ Namespace Peppol.BISBilling30Invoice Me.postboxField = value End Set End Property - + ''' - _ + Public Property Floor() As FloorType Get Return Me.floorField @@ -14518,9 +14518,9 @@ Namespace Peppol.BISBilling30Invoice Me.floorField = value End Set End Property - + ''' - _ + Public Property Room() As RoomType Get Return Me.roomField @@ -14529,9 +14529,9 @@ Namespace Peppol.BISBilling30Invoice Me.roomField = value End Set End Property - + ''' - _ + Public Property StreetName() As StreetNameType Get Return Me.streetNameField @@ -14540,9 +14540,9 @@ Namespace Peppol.BISBilling30Invoice Me.streetNameField = value End Set End Property - + ''' - _ + Public Property AdditionalStreetName() As AdditionalStreetNameType Get Return Me.additionalStreetNameField @@ -14551,9 +14551,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalStreetNameField = value End Set End Property - + ''' - _ + Public Property BlockName() As BlockNameType Get Return Me.blockNameField @@ -14562,9 +14562,9 @@ Namespace Peppol.BISBilling30Invoice Me.blockNameField = value End Set End Property - + ''' - _ + Public Property BuildingName() As BuildingNameType Get Return Me.buildingNameField @@ -14573,9 +14573,9 @@ Namespace Peppol.BISBilling30Invoice Me.buildingNameField = value End Set End Property - + ''' - _ + Public Property BuildingNumber() As BuildingNumberType Get Return Me.buildingNumberField @@ -14584,9 +14584,9 @@ Namespace Peppol.BISBilling30Invoice Me.buildingNumberField = value End Set End Property - + ''' - _ + Public Property InhouseMail() As InhouseMailType Get Return Me.inhouseMailField @@ -14595,9 +14595,9 @@ Namespace Peppol.BISBilling30Invoice Me.inhouseMailField = value End Set End Property - + ''' - _ + Public Property Department() As DepartmentType Get Return Me.departmentField @@ -14606,9 +14606,9 @@ Namespace Peppol.BISBilling30Invoice Me.departmentField = value End Set End Property - + ''' - _ + Public Property MarkAttention() As MarkAttentionType Get Return Me.markAttentionField @@ -14617,9 +14617,9 @@ Namespace Peppol.BISBilling30Invoice Me.markAttentionField = value End Set End Property - + ''' - _ + Public Property MarkCare() As MarkCareType Get Return Me.markCareField @@ -14628,9 +14628,9 @@ Namespace Peppol.BISBilling30Invoice Me.markCareField = value End Set End Property - + ''' - _ + Public Property PlotIdentification() As PlotIdentificationType Get Return Me.plotIdentificationField @@ -14639,9 +14639,9 @@ Namespace Peppol.BISBilling30Invoice Me.plotIdentificationField = value End Set End Property - + ''' - _ + Public Property CitySubdivisionName() As CitySubdivisionNameType Get Return Me.citySubdivisionNameField @@ -14650,9 +14650,9 @@ Namespace Peppol.BISBilling30Invoice Me.citySubdivisionNameField = value End Set End Property - + ''' - _ + Public Property CityName() As CityNameType Get Return Me.cityNameField @@ -14661,9 +14661,9 @@ Namespace Peppol.BISBilling30Invoice Me.cityNameField = value End Set End Property - + ''' - _ + Public Property PostalZone() As PostalZoneType Get Return Me.postalZoneField @@ -14672,9 +14672,9 @@ Namespace Peppol.BISBilling30Invoice Me.postalZoneField = value End Set End Property - + ''' - _ + Public Property CountrySubentity() As CountrySubentityType Get Return Me.countrySubentityField @@ -14683,9 +14683,9 @@ Namespace Peppol.BISBilling30Invoice Me.countrySubentityField = value End Set End Property - + ''' - _ + Public Property CountrySubentityCode() As CountrySubentityCodeType Get Return Me.countrySubentityCodeField @@ -14694,9 +14694,9 @@ Namespace Peppol.BISBilling30Invoice Me.countrySubentityCodeField = value End Set End Property - + ''' - _ + Public Property Region() As RegionType Get Return Me.regionField @@ -14705,9 +14705,9 @@ Namespace Peppol.BISBilling30Invoice Me.regionField = value End Set End Property - + ''' - _ + Public Property District() As DistrictType Get Return Me.districtField @@ -14716,9 +14716,9 @@ Namespace Peppol.BISBilling30Invoice Me.districtField = value End Set End Property - + ''' - _ + Public Property TimezoneOffset() As TimezoneOffsetType Get Return Me.timezoneOffsetField @@ -14727,9 +14727,9 @@ Namespace Peppol.BISBilling30Invoice Me.timezoneOffsetField = value End Set End Property - + ''' - _ + Public Property AddressLine() As AddressLineType() Get Return Me.addressLineField @@ -14738,7 +14738,7 @@ Namespace Peppol.BISBilling30Invoice Me.addressLineField = value End Set End Property - + ''' Public Property Country() As CountryType Get @@ -14748,9 +14748,9 @@ Namespace Peppol.BISBilling30Invoice Me.countryField = value End Set End Property - + ''' - _ + Public Property LocationCoordinate() As LocationCoordinateType() Get Return Me.locationCoordinateField @@ -14760,20 +14760,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AddressLineType - + Private lineField As LineType - + ''' - _ + Public Property Line() As LineType Get Return Me.lineField @@ -14783,22 +14783,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CountryType - + Private identificationCodeField As IdentificationCodeType - + Private nameField As NameType1 - + ''' - _ + Public Property IdentificationCode() As IdentificationCodeType Get Return Me.identificationCodeField @@ -14807,9 +14807,9 @@ Namespace Peppol.BISBilling30Invoice Me.identificationCodeField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -14819,34 +14819,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LocationCoordinateType - + Private coordinateSystemCodeField As CoordinateSystemCodeType - + Private latitudeDegreesMeasureField As LatitudeDegreesMeasureType - + Private latitudeMinutesMeasureField As LatitudeMinutesMeasureType - + Private latitudeDirectionCodeField As LatitudeDirectionCodeType - + Private longitudeDegreesMeasureField As LongitudeDegreesMeasureType - + Private longitudeMinutesMeasureField As LongitudeMinutesMeasureType - + Private longitudeDirectionCodeField As LongitudeDirectionCodeType - + Private altitudeMeasureField As AltitudeMeasureType - + ''' - _ + Public Property CoordinateSystemCode() As CoordinateSystemCodeType Get Return Me.coordinateSystemCodeField @@ -14855,9 +14855,9 @@ Namespace Peppol.BISBilling30Invoice Me.coordinateSystemCodeField = value End Set End Property - + ''' - _ + Public Property LatitudeDegreesMeasure() As LatitudeDegreesMeasureType Get Return Me.latitudeDegreesMeasureField @@ -14866,9 +14866,9 @@ Namespace Peppol.BISBilling30Invoice Me.latitudeDegreesMeasureField = value End Set End Property - + ''' - _ + Public Property LatitudeMinutesMeasure() As LatitudeMinutesMeasureType Get Return Me.latitudeMinutesMeasureField @@ -14877,9 +14877,9 @@ Namespace Peppol.BISBilling30Invoice Me.latitudeMinutesMeasureField = value End Set End Property - + ''' - _ + Public Property LatitudeDirectionCode() As LatitudeDirectionCodeType Get Return Me.latitudeDirectionCodeField @@ -14888,9 +14888,9 @@ Namespace Peppol.BISBilling30Invoice Me.latitudeDirectionCodeField = value End Set End Property - + ''' - _ + Public Property LongitudeDegreesMeasure() As LongitudeDegreesMeasureType Get Return Me.longitudeDegreesMeasureField @@ -14899,9 +14899,9 @@ Namespace Peppol.BISBilling30Invoice Me.longitudeDegreesMeasureField = value End Set End Property - + ''' - _ + Public Property LongitudeMinutesMeasure() As LongitudeMinutesMeasureType Get Return Me.longitudeMinutesMeasureField @@ -14910,9 +14910,9 @@ Namespace Peppol.BISBilling30Invoice Me.longitudeMinutesMeasureField = value End Set End Property - + ''' - _ + Public Property LongitudeDirectionCode() As LongitudeDirectionCodeType Get Return Me.longitudeDirectionCodeField @@ -14921,9 +14921,9 @@ Namespace Peppol.BISBilling30Invoice Me.longitudeDirectionCodeField = value End Set End Property - + ''' - _ + Public Property AltitudeMeasure() As AltitudeMeasureType Get Return Me.altitudeMeasureField @@ -14933,42 +14933,42 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LocationType1 - + Private idField As IDType - + Private descriptionField() As DescriptionType - + Private conditionsField() As ConditionsType - + Private countrySubentityField As CountrySubentityType - + Private countrySubentityCodeField As CountrySubentityCodeType - + Private locationTypeCodeField As LocationTypeCodeType - + Private informationURIField As InformationURIType - + Private nameField As NameType1 - + Private validityPeriodField() As PeriodType - + Private addressField As AddressType - + Private subsidiaryLocationField() As LocationType1 - + Private locationCoordinateField() As LocationCoordinateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -14977,9 +14977,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -14988,9 +14988,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property Conditions() As ConditionsType() Get Return Me.conditionsField @@ -14999,9 +14999,9 @@ Namespace Peppol.BISBilling30Invoice Me.conditionsField = value End Set End Property - + ''' - _ + Public Property CountrySubentity() As CountrySubentityType Get Return Me.countrySubentityField @@ -15010,9 +15010,9 @@ Namespace Peppol.BISBilling30Invoice Me.countrySubentityField = value End Set End Property - + ''' - _ + Public Property CountrySubentityCode() As CountrySubentityCodeType Get Return Me.countrySubentityCodeField @@ -15021,9 +15021,9 @@ Namespace Peppol.BISBilling30Invoice Me.countrySubentityCodeField = value End Set End Property - + ''' - _ + Public Property LocationTypeCode() As LocationTypeCodeType Get Return Me.locationTypeCodeField @@ -15032,9 +15032,9 @@ Namespace Peppol.BISBilling30Invoice Me.locationTypeCodeField = value End Set End Property - + ''' - _ + Public Property InformationURI() As InformationURIType Get Return Me.informationURIField @@ -15043,9 +15043,9 @@ Namespace Peppol.BISBilling30Invoice Me.informationURIField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15054,9 +15054,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property ValidityPeriod() As PeriodType() Get Return Me.validityPeriodField @@ -15065,7 +15065,7 @@ Namespace Peppol.BISBilling30Invoice Me.validityPeriodField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -15075,9 +15075,9 @@ Namespace Peppol.BISBilling30Invoice Me.addressField = value End Set End Property - + ''' - _ + Public Property SubsidiaryLocation() As LocationType1() Get Return Me.subsidiaryLocationField @@ -15086,9 +15086,9 @@ Namespace Peppol.BISBilling30Invoice Me.subsidiaryLocationField = value End Set End Property - + ''' - _ + Public Property LocationCoordinate() As LocationCoordinateType() Get Return Me.locationCoordinateField @@ -15098,32 +15098,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PeriodType - + Private startDateField As StartDateType - + Private startTimeField As StartTimeType - + Private endDateField As EndDateType - + Private endTimeField As EndTimeType - + Private durationMeasureField As DurationMeasureType - + Private descriptionCodeField() As DescriptionCodeType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property StartDate() As StartDateType Get Return Me.startDateField @@ -15132,9 +15132,9 @@ Namespace Peppol.BISBilling30Invoice Me.startDateField = value End Set End Property - + ''' - _ + Public Property StartTime() As StartTimeType Get Return Me.startTimeField @@ -15143,9 +15143,9 @@ Namespace Peppol.BISBilling30Invoice Me.startTimeField = value End Set End Property - + ''' - _ + Public Property EndDate() As EndDateType Get Return Me.endDateField @@ -15154,9 +15154,9 @@ Namespace Peppol.BISBilling30Invoice Me.endDateField = value End Set End Property - + ''' - _ + Public Property EndTime() As EndTimeType Get Return Me.endTimeField @@ -15165,9 +15165,9 @@ Namespace Peppol.BISBilling30Invoice Me.endTimeField = value End Set End Property - + ''' - _ + Public Property DurationMeasure() As DurationMeasureType Get Return Me.durationMeasureField @@ -15176,9 +15176,9 @@ Namespace Peppol.BISBilling30Invoice Me.durationMeasureField = value End Set End Property - + ''' - _ + Public Property DescriptionCode() As DescriptionCodeType() Get Return Me.descriptionCodeField @@ -15187,9 +15187,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -15199,32 +15199,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PartyTaxSchemeType - + Private registrationNameField As RegistrationNameType - + Private companyIDField As CompanyIDType - + Private taxLevelCodeField As TaxLevelCodeType - + Private exemptionReasonCodeField As ExemptionReasonCodeType - + Private exemptionReasonField() As ExemptionReasonType - + Private registrationAddressField As AddressType - + Private taxSchemeField As TaxSchemeType - + ''' - _ + Public Property RegistrationName() As RegistrationNameType Get Return Me.registrationNameField @@ -15233,9 +15233,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationNameField = value End Set End Property - + ''' - _ + Public Property CompanyID() As CompanyIDType Get Return Me.companyIDField @@ -15244,9 +15244,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyIDField = value End Set End Property - + ''' - _ + Public Property TaxLevelCode() As TaxLevelCodeType Get Return Me.taxLevelCodeField @@ -15255,9 +15255,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxLevelCodeField = value End Set End Property - + ''' - _ + Public Property ExemptionReasonCode() As ExemptionReasonCodeType Get Return Me.exemptionReasonCodeField @@ -15266,9 +15266,9 @@ Namespace Peppol.BISBilling30Invoice Me.exemptionReasonCodeField = value End Set End Property - + ''' - _ + Public Property ExemptionReason() As ExemptionReasonType() Get Return Me.exemptionReasonField @@ -15277,7 +15277,7 @@ Namespace Peppol.BISBilling30Invoice Me.exemptionReasonField = value End Set End Property - + ''' Public Property RegistrationAddress() As AddressType Get @@ -15287,7 +15287,7 @@ Namespace Peppol.BISBilling30Invoice Me.registrationAddressField = value End Set End Property - + ''' Public Property TaxScheme() As TaxSchemeType Get @@ -15298,28 +15298,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TaxSchemeType - + Private idField As IDType - + Private nameField As NameType1 - + Private taxTypeCodeField As TaxTypeCodeType - + Private currencyCodeField As CurrencyCodeType - + Private jurisdictionRegionAddressField() As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15328,9 +15328,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15339,9 +15339,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property TaxTypeCode() As TaxTypeCodeType Get Return Me.taxTypeCodeField @@ -15350,9 +15350,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTypeCodeField = value End Set End Property - + ''' - _ + Public Property CurrencyCode() As CurrencyCodeType Get Return Me.currencyCodeField @@ -15361,9 +15361,9 @@ Namespace Peppol.BISBilling30Invoice Me.currencyCodeField = value End Set End Property - + ''' - _ + Public Property JurisdictionRegionAddress() As AddressType() Get Return Me.jurisdictionRegionAddressField @@ -15373,46 +15373,46 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PartyLegalEntityType - + Private registrationNameField As RegistrationNameType - + Private companyIDField As CompanyIDType - + Private registrationDateField As RegistrationDateType - + Private registrationExpirationDateField As RegistrationExpirationDateType - + Private companyLegalFormCodeField As CompanyLegalFormCodeType - + Private companyLegalFormField As CompanyLegalFormType - + Private soleProprietorshipIndicatorField As SoleProprietorshipIndicatorType - + Private companyLiquidationStatusCodeField As CompanyLiquidationStatusCodeType - + Private corporateStockAmountField As CorporateStockAmountType - + Private fullyPaidSharesIndicatorField As FullyPaidSharesIndicatorType - + Private registrationAddressField As AddressType - + Private corporateRegistrationSchemeField As CorporateRegistrationSchemeType - + Private headOfficePartyField As PartyType - + Private shareholderPartyField() As ShareholderPartyType - + ''' - _ + Public Property RegistrationName() As RegistrationNameType Get Return Me.registrationNameField @@ -15421,9 +15421,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationNameField = value End Set End Property - + ''' - _ + Public Property CompanyID() As CompanyIDType Get Return Me.companyIDField @@ -15432,9 +15432,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyIDField = value End Set End Property - + ''' - _ + Public Property RegistrationDate() As RegistrationDateType Get Return Me.registrationDateField @@ -15443,9 +15443,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationDateField = value End Set End Property - + ''' - _ + Public Property RegistrationExpirationDate() As RegistrationExpirationDateType Get Return Me.registrationExpirationDateField @@ -15454,9 +15454,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationExpirationDateField = value End Set End Property - + ''' - _ + Public Property CompanyLegalFormCode() As CompanyLegalFormCodeType Get Return Me.companyLegalFormCodeField @@ -15465,9 +15465,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyLegalFormCodeField = value End Set End Property - + ''' - _ + Public Property CompanyLegalForm() As CompanyLegalFormType Get Return Me.companyLegalFormField @@ -15476,9 +15476,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyLegalFormField = value End Set End Property - + ''' - _ + Public Property SoleProprietorshipIndicator() As SoleProprietorshipIndicatorType Get Return Me.soleProprietorshipIndicatorField @@ -15487,9 +15487,9 @@ Namespace Peppol.BISBilling30Invoice Me.soleProprietorshipIndicatorField = value End Set End Property - + ''' - _ + Public Property CompanyLiquidationStatusCode() As CompanyLiquidationStatusCodeType Get Return Me.companyLiquidationStatusCodeField @@ -15498,9 +15498,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyLiquidationStatusCodeField = value End Set End Property - + ''' - _ + Public Property CorporateStockAmount() As CorporateStockAmountType Get Return Me.corporateStockAmountField @@ -15509,9 +15509,9 @@ Namespace Peppol.BISBilling30Invoice Me.corporateStockAmountField = value End Set End Property - + ''' - _ + Public Property FullyPaidSharesIndicator() As FullyPaidSharesIndicatorType Get Return Me.fullyPaidSharesIndicatorField @@ -15520,7 +15520,7 @@ Namespace Peppol.BISBilling30Invoice Me.fullyPaidSharesIndicatorField = value End Set End Property - + ''' Public Property RegistrationAddress() As AddressType Get @@ -15530,7 +15530,7 @@ Namespace Peppol.BISBilling30Invoice Me.registrationAddressField = value End Set End Property - + ''' Public Property CorporateRegistrationScheme() As CorporateRegistrationSchemeType Get @@ -15540,7 +15540,7 @@ Namespace Peppol.BISBilling30Invoice Me.corporateRegistrationSchemeField = value End Set End Property - + ''' Public Property HeadOfficeParty() As PartyType Get @@ -15550,9 +15550,9 @@ Namespace Peppol.BISBilling30Invoice Me.headOfficePartyField = value End Set End Property - + ''' - _ + Public Property ShareholderParty() As ShareholderPartyType() Get Return Me.shareholderPartyField @@ -15562,26 +15562,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CorporateRegistrationSchemeType - + Private idField As IDType - + Private nameField As NameType1 - + Private corporateRegistrationTypeCodeField As CorporateRegistrationTypeCodeType - + Private jurisdictionRegionAddressField() As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15590,9 +15590,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15601,9 +15601,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property CorporateRegistrationTypeCode() As CorporateRegistrationTypeCodeType Get Return Me.corporateRegistrationTypeCodeField @@ -15612,9 +15612,9 @@ Namespace Peppol.BISBilling30Invoice Me.corporateRegistrationTypeCodeField = value End Set End Property - + ''' - _ + Public Property JurisdictionRegionAddress() As AddressType() Get Return Me.jurisdictionRegionAddressField @@ -15624,22 +15624,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ShareholderPartyType - + Private partecipationPercentField As PartecipationPercentType - + Private partyField As PartyType - + ''' - _ + Public Property PartecipationPercent() As PartecipationPercentType Get Return Me.partecipationPercentField @@ -15648,7 +15648,7 @@ Namespace Peppol.BISBilling30Invoice Me.partecipationPercentField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -15659,32 +15659,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContactType - + Private idField As IDType - + Private nameField As NameType1 - + Private telephoneField As TelephoneType - + Private telefaxField As TelefaxType - + Private electronicMailField As ElectronicMailType - + Private noteField() As NoteType - + Private otherCommunicationField() As CommunicationType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15693,9 +15693,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -15704,9 +15704,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property Telephone() As TelephoneType Get Return Me.telephoneField @@ -15715,9 +15715,9 @@ Namespace Peppol.BISBilling30Invoice Me.telephoneField = value End Set End Property - + ''' - _ + Public Property Telefax() As TelefaxType Get Return Me.telefaxField @@ -15726,9 +15726,9 @@ Namespace Peppol.BISBilling30Invoice Me.telefaxField = value End Set End Property - + ''' - _ + Public Property ElectronicMail() As ElectronicMailType Get Return Me.electronicMailField @@ -15737,9 +15737,9 @@ Namespace Peppol.BISBilling30Invoice Me.electronicMailField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -15748,9 +15748,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property OtherCommunication() As CommunicationType() Get Return Me.otherCommunicationField @@ -15760,24 +15760,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CommunicationType - + Private channelCodeField As ChannelCodeType - + Private channelField As ChannelType - + Private valueField As ValueType - + ''' - _ + Public Property ChannelCode() As ChannelCodeType Get Return Me.channelCodeField @@ -15786,9 +15786,9 @@ Namespace Peppol.BISBilling30Invoice Me.channelCodeField = value End Set End Property - + ''' - _ + Public Property Channel() As ChannelType Get Return Me.channelField @@ -15797,9 +15797,9 @@ Namespace Peppol.BISBilling30Invoice Me.channelField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -15809,52 +15809,52 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PersonType - + Private idField As IDType - + Private firstNameField As FirstNameType - + Private familyNameField As FamilyNameType - + Private titleField As TitleType - + Private middleNameField As MiddleNameType - + Private otherNameField As OtherNameType - + Private nameSuffixField As NameSuffixType - + Private jobTitleField As JobTitleType - + Private nationalityIDField As NationalityIDType - + Private genderCodeField As GenderCodeType - + Private birthDateField As BirthDateType - + Private birthplaceNameField As BirthplaceNameType - + Private organizationDepartmentField As OrganizationDepartmentType - + Private contactField As ContactType - + Private financialAccountField As FinancialAccountType - + Private identityDocumentReferenceField() As DocumentReferenceType - + Private residenceAddressField As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -15863,9 +15863,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property FirstName() As FirstNameType Get Return Me.firstNameField @@ -15874,9 +15874,9 @@ Namespace Peppol.BISBilling30Invoice Me.firstNameField = value End Set End Property - + ''' - _ + Public Property FamilyName() As FamilyNameType Get Return Me.familyNameField @@ -15885,9 +15885,9 @@ Namespace Peppol.BISBilling30Invoice Me.familyNameField = value End Set End Property - + ''' - _ + Public Property Title() As TitleType Get Return Me.titleField @@ -15896,9 +15896,9 @@ Namespace Peppol.BISBilling30Invoice Me.titleField = value End Set End Property - + ''' - _ + Public Property MiddleName() As MiddleNameType Get Return Me.middleNameField @@ -15907,9 +15907,9 @@ Namespace Peppol.BISBilling30Invoice Me.middleNameField = value End Set End Property - + ''' - _ + Public Property OtherName() As OtherNameType Get Return Me.otherNameField @@ -15918,9 +15918,9 @@ Namespace Peppol.BISBilling30Invoice Me.otherNameField = value End Set End Property - + ''' - _ + Public Property NameSuffix() As NameSuffixType Get Return Me.nameSuffixField @@ -15929,9 +15929,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameSuffixField = value End Set End Property - + ''' - _ + Public Property JobTitle() As JobTitleType Get Return Me.jobTitleField @@ -15940,9 +15940,9 @@ Namespace Peppol.BISBilling30Invoice Me.jobTitleField = value End Set End Property - + ''' - _ + Public Property NationalityID() As NationalityIDType Get Return Me.nationalityIDField @@ -15951,9 +15951,9 @@ Namespace Peppol.BISBilling30Invoice Me.nationalityIDField = value End Set End Property - + ''' - _ + Public Property GenderCode() As GenderCodeType Get Return Me.genderCodeField @@ -15962,9 +15962,9 @@ Namespace Peppol.BISBilling30Invoice Me.genderCodeField = value End Set End Property - + ''' - _ + Public Property BirthDate() As BirthDateType Get Return Me.birthDateField @@ -15973,9 +15973,9 @@ Namespace Peppol.BISBilling30Invoice Me.birthDateField = value End Set End Property - + ''' - _ + Public Property BirthplaceName() As BirthplaceNameType Get Return Me.birthplaceNameField @@ -15984,9 +15984,9 @@ Namespace Peppol.BISBilling30Invoice Me.birthplaceNameField = value End Set End Property - + ''' - _ + Public Property OrganizationDepartment() As OrganizationDepartmentType Get Return Me.organizationDepartmentField @@ -15995,7 +15995,7 @@ Namespace Peppol.BISBilling30Invoice Me.organizationDepartmentField = value End Set End Property - + ''' Public Property Contact() As ContactType Get @@ -16005,7 +16005,7 @@ Namespace Peppol.BISBilling30Invoice Me.contactField = value End Set End Property - + ''' Public Property FinancialAccount() As FinancialAccountType Get @@ -16015,9 +16015,9 @@ Namespace Peppol.BISBilling30Invoice Me.financialAccountField = value End Set End Property - + ''' - _ + Public Property IdentityDocumentReference() As DocumentReferenceType() Get Return Me.identityDocumentReferenceField @@ -16026,7 +16026,7 @@ Namespace Peppol.BISBilling30Invoice Me.identityDocumentReferenceField = value End Set End Property - + ''' Public Property ResidenceAddress() As AddressType Get @@ -16037,36 +16037,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class FinancialAccountType - + Private idField As IDType - + Private nameField As NameType1 - + Private aliasNameField As AliasNameType - + Private accountTypeCodeField As AccountTypeCodeType - + Private accountFormatCodeField As AccountFormatCodeType - + Private currencyCodeField As CurrencyCodeType - + Private paymentNoteField() As PaymentNoteType - + Private financialInstitutionBranchField As BranchType - + Private countryField As CountryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16075,9 +16075,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -16086,9 +16086,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property AliasName() As AliasNameType Get Return Me.aliasNameField @@ -16097,9 +16097,9 @@ Namespace Peppol.BISBilling30Invoice Me.aliasNameField = value End Set End Property - + ''' - _ + Public Property AccountTypeCode() As AccountTypeCodeType Get Return Me.accountTypeCodeField @@ -16108,9 +16108,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountTypeCodeField = value End Set End Property - + ''' - _ + Public Property AccountFormatCode() As AccountFormatCodeType Get Return Me.accountFormatCodeField @@ -16119,9 +16119,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountFormatCodeField = value End Set End Property - + ''' - _ + Public Property CurrencyCode() As CurrencyCodeType Get Return Me.currencyCodeField @@ -16130,9 +16130,9 @@ Namespace Peppol.BISBilling30Invoice Me.currencyCodeField = value End Set End Property - + ''' - _ + Public Property PaymentNote() As PaymentNoteType() Get Return Me.paymentNoteField @@ -16141,7 +16141,7 @@ Namespace Peppol.BISBilling30Invoice Me.paymentNoteField = value End Set End Property - + ''' Public Property FinancialInstitutionBranch() As BranchType Get @@ -16151,7 +16151,7 @@ Namespace Peppol.BISBilling30Invoice Me.financialInstitutionBranchField = value End Set End Property - + ''' Public Property Country() As CountryType Get @@ -16162,26 +16162,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class BranchType - + Private idField As IDType - + Private nameField As NameType1 - + Private financialInstitutionField As FinancialInstitutionType - + Private addressField As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16190,9 +16190,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -16201,7 +16201,7 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' Public Property FinancialInstitution() As FinancialInstitutionType Get @@ -16211,7 +16211,7 @@ Namespace Peppol.BISBilling30Invoice Me.financialInstitutionField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -16222,24 +16222,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class FinancialInstitutionType - + Private idField As IDType - + Private nameField As NameType1 - + Private addressField As AddressType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16248,9 +16248,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -16259,7 +16259,7 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -16270,52 +16270,52 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DocumentReferenceType - + Private idField As IDType - + Private copyIndicatorField As CopyIndicatorType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private documentTypeCodeField As DocumentTypeCodeType - + Private documentTypeField As DocumentTypeType - + Private xPathField() As XPathType - + Private languageIDField As LanguageIDType - + Private localeCodeField As LocaleCodeType - + Private versionIDField As VersionIDType - + Private documentStatusCodeField As DocumentStatusCodeType - + Private documentDescriptionField() As DocumentDescriptionType - + Private attachmentField As AttachmentType - + Private validityPeriodField As PeriodType - + Private issuerPartyField As PartyType - + Private resultOfVerificationField As ResultOfVerificationType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16324,9 +16324,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property CopyIndicator() As CopyIndicatorType Get Return Me.copyIndicatorField @@ -16335,9 +16335,9 @@ Namespace Peppol.BISBilling30Invoice Me.copyIndicatorField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -16346,9 +16346,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -16357,9 +16357,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -16368,9 +16368,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property DocumentTypeCode() As DocumentTypeCodeType Get Return Me.documentTypeCodeField @@ -16379,9 +16379,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentTypeCodeField = value End Set End Property - + ''' - _ + Public Property DocumentType() As DocumentTypeType Get Return Me.documentTypeField @@ -16390,9 +16390,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentTypeField = value End Set End Property - + ''' - _ + Public Property XPath() As XPathType() Get Return Me.xPathField @@ -16401,9 +16401,9 @@ Namespace Peppol.BISBilling30Invoice Me.xPathField = value End Set End Property - + ''' - _ + Public Property LanguageID() As LanguageIDType Get Return Me.languageIDField @@ -16412,9 +16412,9 @@ Namespace Peppol.BISBilling30Invoice Me.languageIDField = value End Set End Property - + ''' - _ + Public Property LocaleCode() As LocaleCodeType Get Return Me.localeCodeField @@ -16423,9 +16423,9 @@ Namespace Peppol.BISBilling30Invoice Me.localeCodeField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -16434,9 +16434,9 @@ Namespace Peppol.BISBilling30Invoice Me.versionIDField = value End Set End Property - + ''' - _ + Public Property DocumentStatusCode() As DocumentStatusCodeType Get Return Me.documentStatusCodeField @@ -16445,9 +16445,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentStatusCodeField = value End Set End Property - + ''' - _ + Public Property DocumentDescription() As DocumentDescriptionType() Get Return Me.documentDescriptionField @@ -16456,7 +16456,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentDescriptionField = value End Set End Property - + ''' Public Property Attachment() As AttachmentType Get @@ -16466,7 +16466,7 @@ Namespace Peppol.BISBilling30Invoice Me.attachmentField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -16476,7 +16476,7 @@ Namespace Peppol.BISBilling30Invoice Me.validityPeriodField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -16486,7 +16486,7 @@ Namespace Peppol.BISBilling30Invoice Me.issuerPartyField = value End Set End Property - + ''' Public Property ResultOfVerification() As ResultOfVerificationType Get @@ -16497,22 +16497,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AttachmentType - + Private embeddedDocumentBinaryObjectField As EmbeddedDocumentBinaryObjectType - + Private externalReferenceField As ExternalReferenceType - + ''' - _ + Public Property EmbeddedDocumentBinaryObject() As EmbeddedDocumentBinaryObjectType Get Return Me.embeddedDocumentBinaryObjectField @@ -16521,7 +16521,7 @@ Namespace Peppol.BISBilling30Invoice Me.embeddedDocumentBinaryObjectField = value End Set End Property - + ''' Public Property ExternalReference() As ExternalReferenceType Get @@ -16532,40 +16532,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ExternalReferenceType - + Private uRIField As URIType - + Private documentHashField As DocumentHashType - + Private hashAlgorithmMethodField As HashAlgorithmMethodType - + Private expiryDateField As ExpiryDateType - + Private expiryTimeField As ExpiryTimeType - + Private mimeCodeField As MimeCodeType - + Private formatCodeField As FormatCodeType - + Private encodingCodeField As EncodingCodeType - + Private characterSetCodeField As CharacterSetCodeType - + Private fileNameField As FileNameType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property URI() As URIType Get Return Me.uRIField @@ -16574,9 +16574,9 @@ Namespace Peppol.BISBilling30Invoice Me.uRIField = value End Set End Property - + ''' - _ + Public Property DocumentHash() As DocumentHashType Get Return Me.documentHashField @@ -16585,9 +16585,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentHashField = value End Set End Property - + ''' - _ + Public Property HashAlgorithmMethod() As HashAlgorithmMethodType Get Return Me.hashAlgorithmMethodField @@ -16596,9 +16596,9 @@ Namespace Peppol.BISBilling30Invoice Me.hashAlgorithmMethodField = value End Set End Property - + ''' - _ + Public Property ExpiryDate() As ExpiryDateType Get Return Me.expiryDateField @@ -16607,9 +16607,9 @@ Namespace Peppol.BISBilling30Invoice Me.expiryDateField = value End Set End Property - + ''' - _ + Public Property ExpiryTime() As ExpiryTimeType Get Return Me.expiryTimeField @@ -16618,9 +16618,9 @@ Namespace Peppol.BISBilling30Invoice Me.expiryTimeField = value End Set End Property - + ''' - _ + Public Property MimeCode() As MimeCodeType Get Return Me.mimeCodeField @@ -16629,9 +16629,9 @@ Namespace Peppol.BISBilling30Invoice Me.mimeCodeField = value End Set End Property - + ''' - _ + Public Property FormatCode() As FormatCodeType Get Return Me.formatCodeField @@ -16640,9 +16640,9 @@ Namespace Peppol.BISBilling30Invoice Me.formatCodeField = value End Set End Property - + ''' - _ + Public Property EncodingCode() As EncodingCodeType Get Return Me.encodingCodeField @@ -16651,9 +16651,9 @@ Namespace Peppol.BISBilling30Invoice Me.encodingCodeField = value End Set End Property - + ''' - _ + Public Property CharacterSetCode() As CharacterSetCodeType Get Return Me.characterSetCodeField @@ -16662,9 +16662,9 @@ Namespace Peppol.BISBilling30Invoice Me.characterSetCodeField = value End Set End Property - + ''' - _ + Public Property FileName() As FileNameType Get Return Me.fileNameField @@ -16673,9 +16673,9 @@ Namespace Peppol.BISBilling30Invoice Me.fileNameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -16685,34 +16685,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ResultOfVerificationType - + Private validatorIDField As ValidatorIDType - + Private validationResultCodeField As ValidationResultCodeType - + Private validationDateField As ValidationDateType - + Private validationTimeField As ValidationTimeType - + Private validateProcessField As ValidateProcessType - + Private validateToolField As ValidateToolType - + Private validateToolVersionField As ValidateToolVersionType - + Private signatoryPartyField As PartyType - + ''' - _ + Public Property ValidatorID() As ValidatorIDType Get Return Me.validatorIDField @@ -16721,9 +16721,9 @@ Namespace Peppol.BISBilling30Invoice Me.validatorIDField = value End Set End Property - + ''' - _ + Public Property ValidationResultCode() As ValidationResultCodeType Get Return Me.validationResultCodeField @@ -16732,9 +16732,9 @@ Namespace Peppol.BISBilling30Invoice Me.validationResultCodeField = value End Set End Property - + ''' - _ + Public Property ValidationDate() As ValidationDateType Get Return Me.validationDateField @@ -16743,9 +16743,9 @@ Namespace Peppol.BISBilling30Invoice Me.validationDateField = value End Set End Property - + ''' - _ + Public Property ValidationTime() As ValidationTimeType Get Return Me.validationTimeField @@ -16754,9 +16754,9 @@ Namespace Peppol.BISBilling30Invoice Me.validationTimeField = value End Set End Property - + ''' - _ + Public Property ValidateProcess() As ValidateProcessType Get Return Me.validateProcessField @@ -16765,9 +16765,9 @@ Namespace Peppol.BISBilling30Invoice Me.validateProcessField = value End Set End Property - + ''' - _ + Public Property ValidateTool() As ValidateToolType Get Return Me.validateToolField @@ -16776,9 +16776,9 @@ Namespace Peppol.BISBilling30Invoice Me.validateToolField = value End Set End Property - + ''' - _ + Public Property ValidateToolVersion() As ValidateToolVersionType Get Return Me.validateToolVersionField @@ -16787,7 +16787,7 @@ Namespace Peppol.BISBilling30Invoice Me.validateToolVersionField = value End Set End Property - + ''' Public Property SignatoryParty() As PartyType Get @@ -16798,28 +16798,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ServiceProviderPartyType - + Private idField As IDType - + Private serviceTypeCodeField As ServiceTypeCodeType - + Private serviceTypeField() As ServiceTypeType - + Private partyField As PartyType - + Private sellerContactField As ContactType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16828,9 +16828,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ServiceTypeCode() As ServiceTypeCodeType Get Return Me.serviceTypeCodeField @@ -16839,9 +16839,9 @@ Namespace Peppol.BISBilling30Invoice Me.serviceTypeCodeField = value End Set End Property - + ''' - _ + Public Property ServiceType() As ServiceTypeType() Get Return Me.serviceTypeField @@ -16850,7 +16850,7 @@ Namespace Peppol.BISBilling30Invoice Me.serviceTypeField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -16860,7 +16860,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyField = value End Set End Property - + ''' Public Property SellerContact() As ContactType Get @@ -16871,34 +16871,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PowerOfAttorneyType - + Private idField As IDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private descriptionField() As DescriptionType - + Private notaryPartyField As PartyType - + Private agentPartyField As PartyType - + Private witnessPartyField() As PartyType - + Private mandateDocumentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -16907,9 +16907,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -16918,9 +16918,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -16929,9 +16929,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -16940,7 +16940,7 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' Public Property NotaryParty() As PartyType Get @@ -16950,7 +16950,7 @@ Namespace Peppol.BISBilling30Invoice Me.notaryPartyField = value End Set End Property - + ''' Public Property AgentParty() As PartyType Get @@ -16960,9 +16960,9 @@ Namespace Peppol.BISBilling30Invoice Me.agentPartyField = value End Set End Property - + ''' - _ + Public Property WitnessParty() As PartyType() Get Return Me.witnessPartyField @@ -16971,9 +16971,9 @@ Namespace Peppol.BISBilling30Invoice Me.witnessPartyField = value End Set End Property - + ''' - _ + Public Property MandateDocumentReference() As DocumentReferenceType() Get Return Me.mandateDocumentReferenceField @@ -16983,42 +16983,42 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class StatusType - + Private conditionCodeField As ConditionCodeType - + Private referenceDateField As ReferenceDateType - + Private referenceTimeField As ReferenceTimeType - + Private descriptionField() As DescriptionType - + Private statusReasonCodeField As StatusReasonCodeType - + Private statusReasonField() As StatusReasonType - + Private sequenceIDField As SequenceIDType - + Private textField() As TextType2 - + Private indicationIndicatorField As IndicationIndicatorType - + Private percentField As PercentType1 - + Private reliabilityPercentField As ReliabilityPercentType - + Private conditionField() As ConditionType1 - + ''' - _ + Public Property ConditionCode() As ConditionCodeType Get Return Me.conditionCodeField @@ -17027,9 +17027,9 @@ Namespace Peppol.BISBilling30Invoice Me.conditionCodeField = value End Set End Property - + ''' - _ + Public Property ReferenceDate() As ReferenceDateType Get Return Me.referenceDateField @@ -17038,9 +17038,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceDateField = value End Set End Property - + ''' - _ + Public Property ReferenceTime() As ReferenceTimeType Get Return Me.referenceTimeField @@ -17049,9 +17049,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceTimeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -17060,9 +17060,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property StatusReasonCode() As StatusReasonCodeType Get Return Me.statusReasonCodeField @@ -17071,9 +17071,9 @@ Namespace Peppol.BISBilling30Invoice Me.statusReasonCodeField = value End Set End Property - + ''' - _ + Public Property StatusReason() As StatusReasonType() Get Return Me.statusReasonField @@ -17082,9 +17082,9 @@ Namespace Peppol.BISBilling30Invoice Me.statusReasonField = value End Set End Property - + ''' - _ + Public Property SequenceID() As SequenceIDType Get Return Me.sequenceIDField @@ -17093,9 +17093,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceIDField = value End Set End Property - + ''' - _ + Public Property Text() As TextType2() Get Return Me.textField @@ -17104,9 +17104,9 @@ Namespace Peppol.BISBilling30Invoice Me.textField = value End Set End Property - + ''' - _ + Public Property IndicationIndicator() As IndicationIndicatorType Get Return Me.indicationIndicatorField @@ -17115,9 +17115,9 @@ Namespace Peppol.BISBilling30Invoice Me.indicationIndicatorField = value End Set End Property - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -17126,9 +17126,9 @@ Namespace Peppol.BISBilling30Invoice Me.percentField = value End Set End Property - + ''' - _ + Public Property ReliabilityPercent() As ReliabilityPercentType Get Return Me.reliabilityPercentField @@ -17137,9 +17137,9 @@ Namespace Peppol.BISBilling30Invoice Me.reliabilityPercentField = value End Set End Property - + ''' - _ + Public Property Condition() As ConditionType1() Get Return Me.conditionField @@ -17149,28 +17149,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConditionType1 - + Private attributeIDField As AttributeIDType - + Private measureField As MeasureType2 - + Private descriptionField() As DescriptionType - + Private minimumMeasureField As MinimumMeasureType - + Private maximumMeasureField As MaximumMeasureType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -17179,9 +17179,9 @@ Namespace Peppol.BISBilling30Invoice Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property Measure() As MeasureType2 Get Return Me.measureField @@ -17190,9 +17190,9 @@ Namespace Peppol.BISBilling30Invoice Me.measureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -17201,9 +17201,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property MinimumMeasure() As MinimumMeasureType Get Return Me.minimumMeasureField @@ -17212,9 +17212,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumMeasureField = value End Set End Property - + ''' - _ + Public Property MaximumMeasure() As MaximumMeasureType Get Return Me.maximumMeasureField @@ -17224,46 +17224,46 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContractType - + Private idField As IDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private nominationDateField As NominationDateType - + Private nominationTimeField As NominationTimeType - + Private contractTypeCodeField As ContractTypeCodeType - + Private contractType1Field As ContractTypeType - + Private noteField() As NoteType - + Private versionIDField As VersionIDType - + Private descriptionField() As DescriptionType - + Private validityPeriodField As PeriodType - + Private contractDocumentReferenceField() As DocumentReferenceType - + Private nominationPeriodField As PeriodType - + Private contractualDeliveryField As DeliveryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -17272,9 +17272,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -17283,9 +17283,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -17294,9 +17294,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property NominationDate() As NominationDateType Get Return Me.nominationDateField @@ -17305,9 +17305,9 @@ Namespace Peppol.BISBilling30Invoice Me.nominationDateField = value End Set End Property - + ''' - _ + Public Property NominationTime() As NominationTimeType Get Return Me.nominationTimeField @@ -17316,9 +17316,9 @@ Namespace Peppol.BISBilling30Invoice Me.nominationTimeField = value End Set End Property - + ''' - _ + Public Property ContractTypeCode() As ContractTypeCodeType Get Return Me.contractTypeCodeField @@ -17327,9 +17327,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractTypeCodeField = value End Set End Property - + ''' - _ + Public Property ContractType1() As ContractTypeType Get Return Me.contractType1Field @@ -17338,9 +17338,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractType1Field = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -17349,9 +17349,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -17360,9 +17360,9 @@ Namespace Peppol.BISBilling30Invoice Me.versionIDField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -17371,7 +17371,7 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -17381,9 +17381,9 @@ Namespace Peppol.BISBilling30Invoice Me.validityPeriodField = value End Set End Property - + ''' - _ + Public Property ContractDocumentReference() As DocumentReferenceType() Get Return Me.contractDocumentReferenceField @@ -17392,7 +17392,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractDocumentReferenceField = value End Set End Property - + ''' Public Property NominationPeriod() As PeriodType Get @@ -17402,7 +17402,7 @@ Namespace Peppol.BISBilling30Invoice Me.nominationPeriodField = value End Set End Property - + ''' Public Property ContractualDelivery() As DeliveryType Get @@ -17413,66 +17413,66 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DeliveryType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private actualDeliveryDateField As ActualDeliveryDateType - + Private actualDeliveryTimeField As ActualDeliveryTimeType - + Private latestDeliveryDateField As LatestDeliveryDateType - + Private latestDeliveryTimeField As LatestDeliveryTimeType - + Private releaseIDField As ReleaseIDType - + Private trackingIDField As TrackingIDType - + Private deliveryAddressField As AddressType - + Private deliveryLocationField As LocationType1 - + Private alternativeDeliveryLocationField As LocationType1 - + Private requestedDeliveryPeriodField As PeriodType - + Private promisedDeliveryPeriodField As PeriodType - + Private estimatedDeliveryPeriodField As PeriodType - + Private carrierPartyField As PartyType - + Private deliveryPartyField As PartyType - + Private notifyPartyField() As PartyType - + Private despatchField As DespatchType - + Private deliveryTermsField() As DeliveryTermsType - + Private minimumDeliveryUnitField As DeliveryUnitType - + Private maximumDeliveryUnitField As DeliveryUnitType - + Private shipmentField As ShipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -17481,9 +17481,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -17492,9 +17492,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -17503,9 +17503,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -17514,9 +17514,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property ActualDeliveryDate() As ActualDeliveryDateType Get Return Me.actualDeliveryDateField @@ -17525,9 +17525,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualDeliveryDateField = value End Set End Property - + ''' - _ + Public Property ActualDeliveryTime() As ActualDeliveryTimeType Get Return Me.actualDeliveryTimeField @@ -17536,9 +17536,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property LatestDeliveryDate() As LatestDeliveryDateType Get Return Me.latestDeliveryDateField @@ -17547,9 +17547,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestDeliveryDateField = value End Set End Property - + ''' - _ + Public Property LatestDeliveryTime() As LatestDeliveryTimeType Get Return Me.latestDeliveryTimeField @@ -17558,9 +17558,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property ReleaseID() As ReleaseIDType Get Return Me.releaseIDField @@ -17569,9 +17569,9 @@ Namespace Peppol.BISBilling30Invoice Me.releaseIDField = value End Set End Property - + ''' - _ + Public Property TrackingID() As TrackingIDType Get Return Me.trackingIDField @@ -17580,7 +17580,7 @@ Namespace Peppol.BISBilling30Invoice Me.trackingIDField = value End Set End Property - + ''' Public Property DeliveryAddress() As AddressType Get @@ -17590,7 +17590,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryAddressField = value End Set End Property - + ''' Public Property DeliveryLocation() As LocationType1 Get @@ -17600,7 +17600,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryLocationField = value End Set End Property - + ''' Public Property AlternativeDeliveryLocation() As LocationType1 Get @@ -17610,7 +17610,7 @@ Namespace Peppol.BISBilling30Invoice Me.alternativeDeliveryLocationField = value End Set End Property - + ''' Public Property RequestedDeliveryPeriod() As PeriodType Get @@ -17620,7 +17620,7 @@ Namespace Peppol.BISBilling30Invoice Me.requestedDeliveryPeriodField = value End Set End Property - + ''' Public Property PromisedDeliveryPeriod() As PeriodType Get @@ -17630,7 +17630,7 @@ Namespace Peppol.BISBilling30Invoice Me.promisedDeliveryPeriodField = value End Set End Property - + ''' Public Property EstimatedDeliveryPeriod() As PeriodType Get @@ -17640,7 +17640,7 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDeliveryPeriodField = value End Set End Property - + ''' Public Property CarrierParty() As PartyType Get @@ -17650,7 +17650,7 @@ Namespace Peppol.BISBilling30Invoice Me.carrierPartyField = value End Set End Property - + ''' Public Property DeliveryParty() As PartyType Get @@ -17660,9 +17660,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryPartyField = value End Set End Property - + ''' - _ + Public Property NotifyParty() As PartyType() Get Return Me.notifyPartyField @@ -17671,7 +17671,7 @@ Namespace Peppol.BISBilling30Invoice Me.notifyPartyField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -17681,9 +17681,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -17692,7 +17692,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' Public Property MinimumDeliveryUnit() As DeliveryUnitType Get @@ -17702,7 +17702,7 @@ Namespace Peppol.BISBilling30Invoice Me.minimumDeliveryUnitField = value End Set End Property - + ''' Public Property MaximumDeliveryUnit() As DeliveryUnitType Get @@ -17712,7 +17712,7 @@ Namespace Peppol.BISBilling30Invoice Me.maximumDeliveryUnitField = value End Set End Property - + ''' Public Property Shipment() As ShipmentType Get @@ -17723,56 +17723,56 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DespatchType - + Private idField As IDType - + Private requestedDespatchDateField As RequestedDespatchDateType - + Private requestedDespatchTimeField As RequestedDespatchTimeType - + Private estimatedDespatchDateField As EstimatedDespatchDateType - + Private estimatedDespatchTimeField As EstimatedDespatchTimeType - + Private actualDespatchDateField As ActualDespatchDateType - + Private actualDespatchTimeField As ActualDespatchTimeType - + Private guaranteedDespatchDateField As GuaranteedDespatchDateType - + Private guaranteedDespatchTimeField As GuaranteedDespatchTimeType - + Private releaseIDField As ReleaseIDType - + Private instructionsField() As InstructionsType - + Private despatchAddressField As AddressType - + Private despatchLocationField As LocationType1 - + Private despatchPartyField As PartyType - + Private carrierPartyField As PartyType - + Private notifyPartyField() As PartyType - + Private contactField As ContactType - + Private estimatedDespatchPeriodField As PeriodType - + Private requestedDespatchPeriodField As PeriodType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -17781,9 +17781,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property RequestedDespatchDate() As RequestedDespatchDateType Get Return Me.requestedDespatchDateField @@ -17792,9 +17792,9 @@ Namespace Peppol.BISBilling30Invoice Me.requestedDespatchDateField = value End Set End Property - + ''' - _ + Public Property RequestedDespatchTime() As RequestedDespatchTimeType Get Return Me.requestedDespatchTimeField @@ -17803,9 +17803,9 @@ Namespace Peppol.BISBilling30Invoice Me.requestedDespatchTimeField = value End Set End Property - + ''' - _ + Public Property EstimatedDespatchDate() As EstimatedDespatchDateType Get Return Me.estimatedDespatchDateField @@ -17814,9 +17814,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDespatchDateField = value End Set End Property - + ''' - _ + Public Property EstimatedDespatchTime() As EstimatedDespatchTimeType Get Return Me.estimatedDespatchTimeField @@ -17825,9 +17825,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDespatchTimeField = value End Set End Property - + ''' - _ + Public Property ActualDespatchDate() As ActualDespatchDateType Get Return Me.actualDespatchDateField @@ -17836,9 +17836,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualDespatchDateField = value End Set End Property - + ''' - _ + Public Property ActualDespatchTime() As ActualDespatchTimeType Get Return Me.actualDespatchTimeField @@ -17847,9 +17847,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualDespatchTimeField = value End Set End Property - + ''' - _ + Public Property GuaranteedDespatchDate() As GuaranteedDespatchDateType Get Return Me.guaranteedDespatchDateField @@ -17858,9 +17858,9 @@ Namespace Peppol.BISBilling30Invoice Me.guaranteedDespatchDateField = value End Set End Property - + ''' - _ + Public Property GuaranteedDespatchTime() As GuaranteedDespatchTimeType Get Return Me.guaranteedDespatchTimeField @@ -17869,9 +17869,9 @@ Namespace Peppol.BISBilling30Invoice Me.guaranteedDespatchTimeField = value End Set End Property - + ''' - _ + Public Property ReleaseID() As ReleaseIDType Get Return Me.releaseIDField @@ -17880,9 +17880,9 @@ Namespace Peppol.BISBilling30Invoice Me.releaseIDField = value End Set End Property - + ''' - _ + Public Property Instructions() As InstructionsType() Get Return Me.instructionsField @@ -17891,7 +17891,7 @@ Namespace Peppol.BISBilling30Invoice Me.instructionsField = value End Set End Property - + ''' Public Property DespatchAddress() As AddressType Get @@ -17901,7 +17901,7 @@ Namespace Peppol.BISBilling30Invoice Me.despatchAddressField = value End Set End Property - + ''' Public Property DespatchLocation() As LocationType1 Get @@ -17911,7 +17911,7 @@ Namespace Peppol.BISBilling30Invoice Me.despatchLocationField = value End Set End Property - + ''' Public Property DespatchParty() As PartyType Get @@ -17921,7 +17921,7 @@ Namespace Peppol.BISBilling30Invoice Me.despatchPartyField = value End Set End Property - + ''' Public Property CarrierParty() As PartyType Get @@ -17931,9 +17931,9 @@ Namespace Peppol.BISBilling30Invoice Me.carrierPartyField = value End Set End Property - + ''' - _ + Public Property NotifyParty() As PartyType() Get Return Me.notifyPartyField @@ -17942,7 +17942,7 @@ Namespace Peppol.BISBilling30Invoice Me.notifyPartyField = value End Set End Property - + ''' Public Property Contact() As ContactType Get @@ -17952,7 +17952,7 @@ Namespace Peppol.BISBilling30Invoice Me.contactField = value End Set End Property - + ''' Public Property EstimatedDespatchPeriod() As PeriodType Get @@ -17962,7 +17962,7 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDespatchPeriodField = value End Set End Property - + ''' Public Property RequestedDespatchPeriod() As PeriodType Get @@ -17973,32 +17973,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DeliveryTermsType - + Private idField As IDType - + Private specialTermsField() As SpecialTermsType - + Private lossRiskResponsibilityCodeField As LossRiskResponsibilityCodeType - + Private lossRiskField() As LossRiskType - + Private amountField As AmountType2 - + Private deliveryLocationField As LocationType1 - + Private allowanceChargeField As AllowanceChargeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18007,9 +18007,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SpecialTerms() As SpecialTermsType() Get Return Me.specialTermsField @@ -18018,9 +18018,9 @@ Namespace Peppol.BISBilling30Invoice Me.specialTermsField = value End Set End Property - + ''' - _ + Public Property LossRiskResponsibilityCode() As LossRiskResponsibilityCodeType Get Return Me.lossRiskResponsibilityCodeField @@ -18029,9 +18029,9 @@ Namespace Peppol.BISBilling30Invoice Me.lossRiskResponsibilityCodeField = value End Set End Property - + ''' - _ + Public Property LossRisk() As LossRiskType() Get Return Me.lossRiskField @@ -18040,9 +18040,9 @@ Namespace Peppol.BISBilling30Invoice Me.lossRiskField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -18051,7 +18051,7 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' Public Property DeliveryLocation() As LocationType1 Get @@ -18061,7 +18061,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryLocationField = value End Set End Property - + ''' Public Property AllowanceCharge() As AllowanceChargeType Get @@ -18072,48 +18072,48 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AllowanceChargeType - + Private idField As IDType - + Private chargeIndicatorField As ChargeIndicatorType - + Private allowanceChargeReasonCodeField As AllowanceChargeReasonCodeType - + Private allowanceChargeReasonField() As AllowanceChargeReasonType - + Private multiplierFactorNumericField As MultiplierFactorNumericType - + Private prepaidIndicatorField As PrepaidIndicatorType - + Private sequenceNumericField As SequenceNumericType - + Private amountField As AmountType2 - + Private baseAmountField As BaseAmountType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private perUnitAmountField As PerUnitAmountType - + Private taxCategoryField() As TaxCategoryType - + Private taxTotalField As TaxTotalType - + Private paymentMeansField() As PaymentMeansType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18122,9 +18122,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ChargeIndicator() As ChargeIndicatorType Get Return Me.chargeIndicatorField @@ -18133,9 +18133,9 @@ Namespace Peppol.BISBilling30Invoice Me.chargeIndicatorField = value End Set End Property - + ''' - _ + Public Property AllowanceChargeReasonCode() As AllowanceChargeReasonCodeType Get Return Me.allowanceChargeReasonCodeField @@ -18144,9 +18144,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeReasonCodeField = value End Set End Property - + ''' - _ + Public Property AllowanceChargeReason() As AllowanceChargeReasonType() Get Return Me.allowanceChargeReasonField @@ -18155,9 +18155,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeReasonField = value End Set End Property - + ''' - _ + Public Property MultiplierFactorNumeric() As MultiplierFactorNumericType Get Return Me.multiplierFactorNumericField @@ -18166,9 +18166,9 @@ Namespace Peppol.BISBilling30Invoice Me.multiplierFactorNumericField = value End Set End Property - + ''' - _ + Public Property PrepaidIndicator() As PrepaidIndicatorType Get Return Me.prepaidIndicatorField @@ -18177,9 +18177,9 @@ Namespace Peppol.BISBilling30Invoice Me.prepaidIndicatorField = value End Set End Property - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -18188,9 +18188,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -18199,9 +18199,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property BaseAmount() As BaseAmountType Get Return Me.baseAmountField @@ -18210,9 +18210,9 @@ Namespace Peppol.BISBilling30Invoice Me.baseAmountField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -18221,9 +18221,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -18232,9 +18232,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PerUnitAmount() As PerUnitAmountType Get Return Me.perUnitAmountField @@ -18243,9 +18243,9 @@ Namespace Peppol.BISBilling30Invoice Me.perUnitAmountField = value End Set End Property - + ''' - _ + Public Property TaxCategory() As TaxCategoryType() Get Return Me.taxCategoryField @@ -18254,7 +18254,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxCategoryField = value End Set End Property - + ''' Public Property TaxTotal() As TaxTotalType Get @@ -18264,9 +18264,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property PaymentMeans() As PaymentMeansType() Get Return Me.paymentMeansField @@ -18276,38 +18276,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TaxCategoryType - + Private idField As IDType - + Private nameField As NameType1 - + Private percentField As PercentType1 - + Private baseUnitMeasureField As BaseUnitMeasureType - + Private perUnitAmountField As PerUnitAmountType - + Private taxExemptionReasonCodeField As TaxExemptionReasonCodeType - + Private taxExemptionReasonField() As TaxExemptionReasonType - + Private tierRangeField As TierRangeType - + Private tierRatePercentField As TierRatePercentType - + Private taxSchemeField As TaxSchemeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18316,9 +18316,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -18327,9 +18327,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -18338,9 +18338,9 @@ Namespace Peppol.BISBilling30Invoice Me.percentField = value End Set End Property - + ''' - _ + Public Property BaseUnitMeasure() As BaseUnitMeasureType Get Return Me.baseUnitMeasureField @@ -18349,9 +18349,9 @@ Namespace Peppol.BISBilling30Invoice Me.baseUnitMeasureField = value End Set End Property - + ''' - _ + Public Property PerUnitAmount() As PerUnitAmountType Get Return Me.perUnitAmountField @@ -18360,9 +18360,9 @@ Namespace Peppol.BISBilling30Invoice Me.perUnitAmountField = value End Set End Property - + ''' - _ + Public Property TaxExemptionReasonCode() As TaxExemptionReasonCodeType Get Return Me.taxExemptionReasonCodeField @@ -18371,9 +18371,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxExemptionReasonCodeField = value End Set End Property - + ''' - _ + Public Property TaxExemptionReason() As TaxExemptionReasonType() Get Return Me.taxExemptionReasonField @@ -18382,9 +18382,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxExemptionReasonField = value End Set End Property - + ''' - _ + Public Property TierRange() As TierRangeType Get Return Me.tierRangeField @@ -18393,9 +18393,9 @@ Namespace Peppol.BISBilling30Invoice Me.tierRangeField = value End Set End Property - + ''' - _ + Public Property TierRatePercent() As TierRatePercentType Get Return Me.tierRatePercentField @@ -18404,7 +18404,7 @@ Namespace Peppol.BISBilling30Invoice Me.tierRatePercentField = value End Set End Property - + ''' Public Property TaxScheme() As TaxSchemeType Get @@ -18415,28 +18415,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TaxTotalType - + Private taxAmountField As TaxAmountType - + Private roundingAmountField As RoundingAmountType - + Private taxEvidenceIndicatorField As TaxEvidenceIndicatorType - + Private taxIncludedIndicatorField As TaxIncludedIndicatorType - + Private taxSubtotalField() As TaxSubtotalType - + ''' - _ + Public Property TaxAmount() As TaxAmountType Get Return Me.taxAmountField @@ -18445,9 +18445,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxAmountField = value End Set End Property - + ''' - _ + Public Property RoundingAmount() As RoundingAmountType Get Return Me.roundingAmountField @@ -18456,9 +18456,9 @@ Namespace Peppol.BISBilling30Invoice Me.roundingAmountField = value End Set End Property - + ''' - _ + Public Property TaxEvidenceIndicator() As TaxEvidenceIndicatorType Get Return Me.taxEvidenceIndicatorField @@ -18467,9 +18467,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxEvidenceIndicatorField = value End Set End Property - + ''' - _ + Public Property TaxIncludedIndicator() As TaxIncludedIndicatorType Get Return Me.taxIncludedIndicatorField @@ -18478,9 +18478,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxIncludedIndicatorField = value End Set End Property - + ''' - _ + Public Property TaxSubtotal() As TaxSubtotalType() Get Return Me.taxSubtotalField @@ -18490,38 +18490,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TaxSubtotalType - + Private taxableAmountField As TaxableAmountType - + Private taxAmountField As TaxAmountType - + Private calculationSequenceNumericField As CalculationSequenceNumericType - + Private transactionCurrencyTaxAmountField As TransactionCurrencyTaxAmountType - + Private percentField As PercentType1 - + Private baseUnitMeasureField As BaseUnitMeasureType - + Private perUnitAmountField As PerUnitAmountType - + Private tierRangeField As TierRangeType - + Private tierRatePercentField As TierRatePercentType - + Private taxCategoryField As TaxCategoryType - + ''' - _ + Public Property TaxableAmount() As TaxableAmountType Get Return Me.taxableAmountField @@ -18530,9 +18530,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxableAmountField = value End Set End Property - + ''' - _ + Public Property TaxAmount() As TaxAmountType Get Return Me.taxAmountField @@ -18541,9 +18541,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxAmountField = value End Set End Property - + ''' - _ + Public Property CalculationSequenceNumeric() As CalculationSequenceNumericType Get Return Me.calculationSequenceNumericField @@ -18552,9 +18552,9 @@ Namespace Peppol.BISBilling30Invoice Me.calculationSequenceNumericField = value End Set End Property - + ''' - _ + Public Property TransactionCurrencyTaxAmount() As TransactionCurrencyTaxAmountType Get Return Me.transactionCurrencyTaxAmountField @@ -18563,9 +18563,9 @@ Namespace Peppol.BISBilling30Invoice Me.transactionCurrencyTaxAmountField = value End Set End Property - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -18574,9 +18574,9 @@ Namespace Peppol.BISBilling30Invoice Me.percentField = value End Set End Property - + ''' - _ + Public Property BaseUnitMeasure() As BaseUnitMeasureType Get Return Me.baseUnitMeasureField @@ -18585,9 +18585,9 @@ Namespace Peppol.BISBilling30Invoice Me.baseUnitMeasureField = value End Set End Property - + ''' - _ + Public Property PerUnitAmount() As PerUnitAmountType Get Return Me.perUnitAmountField @@ -18596,9 +18596,9 @@ Namespace Peppol.BISBilling30Invoice Me.perUnitAmountField = value End Set End Property - + ''' - _ + Public Property TierRange() As TierRangeType Get Return Me.tierRangeField @@ -18607,9 +18607,9 @@ Namespace Peppol.BISBilling30Invoice Me.tierRangeField = value End Set End Property - + ''' - _ + Public Property TierRatePercent() As TierRatePercentType Get Return Me.tierRatePercentField @@ -18618,7 +18618,7 @@ Namespace Peppol.BISBilling30Invoice Me.tierRatePercentField = value End Set End Property - + ''' Public Property TaxCategory() As TaxCategoryType Get @@ -18629,44 +18629,44 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PaymentMeansType - + Private idField As IDType - + Private paymentMeansCodeField As PaymentMeansCodeType - + Private paymentDueDateField As PaymentDueDateType - + Private paymentChannelCodeField As PaymentChannelCodeType - + Private instructionIDField As InstructionIDType - + Private instructionNoteField() As InstructionNoteType - + Private paymentIDField() As PaymentIDType - + Private cardAccountField As CardAccountType - + Private payerFinancialAccountField As FinancialAccountType - + Private payeeFinancialAccountField As FinancialAccountType - + Private creditAccountField As CreditAccountType - + Private paymentMandateField As PaymentMandateType - + Private tradeFinancingField As TradeFinancingType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -18675,9 +18675,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property PaymentMeansCode() As PaymentMeansCodeType Get Return Me.paymentMeansCodeField @@ -18686,9 +18686,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentMeansCodeField = value End Set End Property - + ''' - _ + Public Property PaymentDueDate() As PaymentDueDateType Get Return Me.paymentDueDateField @@ -18697,9 +18697,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentDueDateField = value End Set End Property - + ''' - _ + Public Property PaymentChannelCode() As PaymentChannelCodeType Get Return Me.paymentChannelCodeField @@ -18708,9 +18708,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentChannelCodeField = value End Set End Property - + ''' - _ + Public Property InstructionID() As InstructionIDType Get Return Me.instructionIDField @@ -18719,9 +18719,9 @@ Namespace Peppol.BISBilling30Invoice Me.instructionIDField = value End Set End Property - + ''' - _ + Public Property InstructionNote() As InstructionNoteType() Get Return Me.instructionNoteField @@ -18730,9 +18730,9 @@ Namespace Peppol.BISBilling30Invoice Me.instructionNoteField = value End Set End Property - + ''' - _ + Public Property PaymentID() As PaymentIDType() Get Return Me.paymentIDField @@ -18741,7 +18741,7 @@ Namespace Peppol.BISBilling30Invoice Me.paymentIDField = value End Set End Property - + ''' Public Property CardAccount() As CardAccountType Get @@ -18751,7 +18751,7 @@ Namespace Peppol.BISBilling30Invoice Me.cardAccountField = value End Set End Property - + ''' Public Property PayerFinancialAccount() As FinancialAccountType Get @@ -18761,7 +18761,7 @@ Namespace Peppol.BISBilling30Invoice Me.payerFinancialAccountField = value End Set End Property - + ''' Public Property PayeeFinancialAccount() As FinancialAccountType Get @@ -18771,7 +18771,7 @@ Namespace Peppol.BISBilling30Invoice Me.payeeFinancialAccountField = value End Set End Property - + ''' Public Property CreditAccount() As CreditAccountType Get @@ -18781,7 +18781,7 @@ Namespace Peppol.BISBilling30Invoice Me.creditAccountField = value End Set End Property - + ''' Public Property PaymentMandate() As PaymentMandateType Get @@ -18791,7 +18791,7 @@ Namespace Peppol.BISBilling30Invoice Me.paymentMandateField = value End Set End Property - + ''' Public Property TradeFinancing() As TradeFinancingType Get @@ -18802,40 +18802,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CardAccountType - + Private primaryAccountNumberIDField As PrimaryAccountNumberIDType - + Private networkIDField As NetworkIDType - + Private cardTypeCodeField As CardTypeCodeType - + Private validityStartDateField As ValidityStartDateType - + Private expiryDateField As ExpiryDateType - + Private issuerIDField As IssuerIDType - + Private issueNumberIDField As IssueNumberIDType - + Private cV2IDField As CV2IDType - + Private cardChipCodeField As CardChipCodeType - + Private chipApplicationIDField As ChipApplicationIDType - + Private holderNameField As HolderNameType - + ''' - _ + Public Property PrimaryAccountNumberID() As PrimaryAccountNumberIDType Get Return Me.primaryAccountNumberIDField @@ -18844,9 +18844,9 @@ Namespace Peppol.BISBilling30Invoice Me.primaryAccountNumberIDField = value End Set End Property - + ''' - _ + Public Property NetworkID() As NetworkIDType Get Return Me.networkIDField @@ -18855,9 +18855,9 @@ Namespace Peppol.BISBilling30Invoice Me.networkIDField = value End Set End Property - + ''' - _ + Public Property CardTypeCode() As CardTypeCodeType Get Return Me.cardTypeCodeField @@ -18866,9 +18866,9 @@ Namespace Peppol.BISBilling30Invoice Me.cardTypeCodeField = value End Set End Property - + ''' - _ + Public Property ValidityStartDate() As ValidityStartDateType Get Return Me.validityStartDateField @@ -18877,9 +18877,9 @@ Namespace Peppol.BISBilling30Invoice Me.validityStartDateField = value End Set End Property - + ''' - _ + Public Property ExpiryDate() As ExpiryDateType Get Return Me.expiryDateField @@ -18888,9 +18888,9 @@ Namespace Peppol.BISBilling30Invoice Me.expiryDateField = value End Set End Property - + ''' - _ + Public Property IssuerID() As IssuerIDType Get Return Me.issuerIDField @@ -18899,9 +18899,9 @@ Namespace Peppol.BISBilling30Invoice Me.issuerIDField = value End Set End Property - + ''' - _ + Public Property IssueNumberID() As IssueNumberIDType Get Return Me.issueNumberIDField @@ -18910,9 +18910,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueNumberIDField = value End Set End Property - + ''' - _ + Public Property CV2ID() As CV2IDType Get Return Me.cV2IDField @@ -18921,9 +18921,9 @@ Namespace Peppol.BISBilling30Invoice Me.cV2IDField = value End Set End Property - + ''' - _ + Public Property CardChipCode() As CardChipCodeType Get Return Me.cardChipCodeField @@ -18932,9 +18932,9 @@ Namespace Peppol.BISBilling30Invoice Me.cardChipCodeField = value End Set End Property - + ''' - _ + Public Property ChipApplicationID() As ChipApplicationIDType Get Return Me.chipApplicationIDField @@ -18943,9 +18943,9 @@ Namespace Peppol.BISBilling30Invoice Me.chipApplicationIDField = value End Set End Property - + ''' - _ + Public Property HolderName() As HolderNameType Get Return Me.holderNameField @@ -18955,20 +18955,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CreditAccountType - + Private accountIDField As AccountIDType - + ''' - _ + Public Property AccountID() As AccountIDType Get Return Me.accountIDField @@ -18978,38 +18978,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PaymentMandateType - + Private idField As IDType - + Private mandateTypeCodeField As MandateTypeCodeType - + Private maximumPaymentInstructionsNumericField As MaximumPaymentInstructionsNumericType - + Private maximumPaidAmountField As MaximumPaidAmountType - + Private signatureIDField As SignatureIDType - + Private payerPartyField As PartyType - + Private payerFinancialAccountField As FinancialAccountType - + Private validityPeriodField As PeriodType - + Private paymentReversalPeriodField As PeriodType - + Private clauseField() As ClauseType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19018,9 +19018,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property MandateTypeCode() As MandateTypeCodeType Get Return Me.mandateTypeCodeField @@ -19029,9 +19029,9 @@ Namespace Peppol.BISBilling30Invoice Me.mandateTypeCodeField = value End Set End Property - + ''' - _ + Public Property MaximumPaymentInstructionsNumeric() As MaximumPaymentInstructionsNumericType Get Return Me.maximumPaymentInstructionsNumericField @@ -19040,9 +19040,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumPaymentInstructionsNumericField = value End Set End Property - + ''' - _ + Public Property MaximumPaidAmount() As MaximumPaidAmountType Get Return Me.maximumPaidAmountField @@ -19051,9 +19051,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumPaidAmountField = value End Set End Property - + ''' - _ + Public Property SignatureID() As SignatureIDType Get Return Me.signatureIDField @@ -19062,7 +19062,7 @@ Namespace Peppol.BISBilling30Invoice Me.signatureIDField = value End Set End Property - + ''' Public Property PayerParty() As PartyType Get @@ -19072,7 +19072,7 @@ Namespace Peppol.BISBilling30Invoice Me.payerPartyField = value End Set End Property - + ''' Public Property PayerFinancialAccount() As FinancialAccountType Get @@ -19082,7 +19082,7 @@ Namespace Peppol.BISBilling30Invoice Me.payerFinancialAccountField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -19092,7 +19092,7 @@ Namespace Peppol.BISBilling30Invoice Me.validityPeriodField = value End Set End Property - + ''' Public Property PaymentReversalPeriod() As PeriodType Get @@ -19102,9 +19102,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentReversalPeriodField = value End Set End Property - + ''' - _ + Public Property Clause() As ClauseType() Get Return Me.clauseField @@ -19114,22 +19114,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ClauseType - + Private idField As IDType - + Private contentField() As ContentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19138,9 +19138,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Content() As ContentType() Get Return Me.contentField @@ -19150,32 +19150,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TradeFinancingType - + Private idField As IDType - + Private financingInstrumentCodeField As FinancingInstrumentCodeType - + Private contractDocumentReferenceField As DocumentReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private financingPartyField As PartyType - + Private financingFinancialAccountField As FinancialAccountType - + Private clauseField() As ClauseType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19184,9 +19184,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property FinancingInstrumentCode() As FinancingInstrumentCodeType Get Return Me.financingInstrumentCodeField @@ -19195,7 +19195,7 @@ Namespace Peppol.BISBilling30Invoice Me.financingInstrumentCodeField = value End Set End Property - + ''' Public Property ContractDocumentReference() As DocumentReferenceType Get @@ -19205,9 +19205,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -19216,7 +19216,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property FinancingParty() As PartyType Get @@ -19226,7 +19226,7 @@ Namespace Peppol.BISBilling30Invoice Me.financingPartyField = value End Set End Property - + ''' Public Property FinancingFinancialAccount() As FinancialAccountType Get @@ -19236,9 +19236,9 @@ Namespace Peppol.BISBilling30Invoice Me.financingFinancialAccountField = value End Set End Property - + ''' - _ + Public Property Clause() As ClauseType() Get Return Me.clauseField @@ -19248,24 +19248,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DeliveryUnitType - + Private batchQuantityField As BatchQuantityType - + Private consumerUnitQuantityField As ConsumerUnitQuantityType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + ''' - _ + Public Property BatchQuantity() As BatchQuantityType Get Return Me.batchQuantityField @@ -19274,9 +19274,9 @@ Namespace Peppol.BISBilling30Invoice Me.batchQuantityField = value End Set End Property - + ''' - _ + Public Property ConsumerUnitQuantity() As ConsumerUnitQuantityType Get Return Me.consumerUnitQuantityField @@ -19285,9 +19285,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumerUnitQuantityField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -19297,64 +19297,64 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportationServiceType - + Private transportServiceCodeField As TransportServiceCodeType - + Private tariffClassCodeField As TariffClassCodeType - + Private priorityField As PriorityType - + Private freightRateClassCodeField As FreightRateClassCodeType - + Private transportationServiceDescriptionField() As TransportationServiceDescriptionType - + Private transportationServiceDetailsURIField As TransportationServiceDetailsURIType - + Private nominationDateField As NominationDateType - + Private nominationTimeField As NominationTimeType - + Private nameField As NameType1 - + Private sequenceNumericField As SequenceNumericType - + Private transportEquipmentField() As TransportEquipmentType - + Private supportedTransportEquipmentField() As TransportEquipmentType - + Private unsupportedTransportEquipmentField() As TransportEquipmentType - + Private commodityClassificationField() As CommodityClassificationType - + Private supportedCommodityClassificationField() As CommodityClassificationType - + Private unsupportedCommodityClassificationField() As CommodityClassificationType - + Private totalCapacityDimensionField As DimensionType - + Private shipmentStageField() As ShipmentStageType - + Private transportEventField() As TransportEventType - + Private responsibleTransportServiceProviderPartyField As PartyType - + Private environmentalEmissionField() As EnvironmentalEmissionType - + Private estimatedDurationPeriodField As PeriodType - + Private scheduledServiceFrequencyField() As ServiceFrequencyType - + ''' - _ + Public Property TransportServiceCode() As TransportServiceCodeType Get Return Me.transportServiceCodeField @@ -19363,9 +19363,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportServiceCodeField = value End Set End Property - + ''' - _ + Public Property TariffClassCode() As TariffClassCodeType Get Return Me.tariffClassCodeField @@ -19374,9 +19374,9 @@ Namespace Peppol.BISBilling30Invoice Me.tariffClassCodeField = value End Set End Property - + ''' - _ + Public Property Priority() As PriorityType Get Return Me.priorityField @@ -19385,9 +19385,9 @@ Namespace Peppol.BISBilling30Invoice Me.priorityField = value End Set End Property - + ''' - _ + Public Property FreightRateClassCode() As FreightRateClassCodeType Get Return Me.freightRateClassCodeField @@ -19396,9 +19396,9 @@ Namespace Peppol.BISBilling30Invoice Me.freightRateClassCodeField = value End Set End Property - + ''' - _ + Public Property TransportationServiceDescription() As TransportationServiceDescriptionType() Get Return Me.transportationServiceDescriptionField @@ -19407,9 +19407,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportationServiceDescriptionField = value End Set End Property - + ''' - _ + Public Property TransportationServiceDetailsURI() As TransportationServiceDetailsURIType Get Return Me.transportationServiceDetailsURIField @@ -19418,9 +19418,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportationServiceDetailsURIField = value End Set End Property - + ''' - _ + Public Property NominationDate() As NominationDateType Get Return Me.nominationDateField @@ -19429,9 +19429,9 @@ Namespace Peppol.BISBilling30Invoice Me.nominationDateField = value End Set End Property - + ''' - _ + Public Property NominationTime() As NominationTimeType Get Return Me.nominationTimeField @@ -19440,9 +19440,9 @@ Namespace Peppol.BISBilling30Invoice Me.nominationTimeField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -19451,9 +19451,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -19462,9 +19462,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property TransportEquipment() As TransportEquipmentType() Get Return Me.transportEquipmentField @@ -19473,9 +19473,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportEquipmentField = value End Set End Property - + ''' - _ + Public Property SupportedTransportEquipment() As TransportEquipmentType() Get Return Me.supportedTransportEquipmentField @@ -19484,9 +19484,9 @@ Namespace Peppol.BISBilling30Invoice Me.supportedTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property UnsupportedTransportEquipment() As TransportEquipmentType() Get Return Me.unsupportedTransportEquipmentField @@ -19495,9 +19495,9 @@ Namespace Peppol.BISBilling30Invoice Me.unsupportedTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property CommodityClassification() As CommodityClassificationType() Get Return Me.commodityClassificationField @@ -19506,9 +19506,9 @@ Namespace Peppol.BISBilling30Invoice Me.commodityClassificationField = value End Set End Property - + ''' - _ + Public Property SupportedCommodityClassification() As CommodityClassificationType() Get Return Me.supportedCommodityClassificationField @@ -19517,9 +19517,9 @@ Namespace Peppol.BISBilling30Invoice Me.supportedCommodityClassificationField = value End Set End Property - + ''' - _ + Public Property UnsupportedCommodityClassification() As CommodityClassificationType() Get Return Me.unsupportedCommodityClassificationField @@ -19528,7 +19528,7 @@ Namespace Peppol.BISBilling30Invoice Me.unsupportedCommodityClassificationField = value End Set End Property - + ''' Public Property TotalCapacityDimension() As DimensionType Get @@ -19538,9 +19538,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalCapacityDimensionField = value End Set End Property - + ''' - _ + Public Property ShipmentStage() As ShipmentStageType() Get Return Me.shipmentStageField @@ -19549,9 +19549,9 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentStageField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -19560,7 +19560,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportEventField = value End Set End Property - + ''' Public Property ResponsibleTransportServiceProviderParty() As PartyType Get @@ -19570,9 +19570,9 @@ Namespace Peppol.BISBilling30Invoice Me.responsibleTransportServiceProviderPartyField = value End Set End Property - + ''' - _ + Public Property EnvironmentalEmission() As EnvironmentalEmissionType() Get Return Me.environmentalEmissionField @@ -19581,7 +19581,7 @@ Namespace Peppol.BISBilling30Invoice Me.environmentalEmissionField = value End Set End Property - + ''' Public Property EstimatedDurationPeriod() As PeriodType Get @@ -19591,9 +19591,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDurationPeriodField = value End Set End Property - + ''' - _ + Public Property ScheduledServiceFrequency() As ServiceFrequencyType() Get Return Me.scheduledServiceFrequencyField @@ -19603,140 +19603,140 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportEquipmentType - + Private idField As IDType - + Private referencedConsignmentIDField() As ReferencedConsignmentIDType - + Private transportEquipmentTypeCodeField As TransportEquipmentTypeCodeType - + Private providerTypeCodeField As ProviderTypeCodeType - + Private ownerTypeCodeField As OwnerTypeCodeType - + Private sizeTypeCodeField As SizeTypeCodeType - + Private dispositionCodeField As DispositionCodeType - + Private fullnessIndicationCodeField As FullnessIndicationCodeType - + Private refrigerationOnIndicatorField As RefrigerationOnIndicatorType - + Private informationField() As InformationType - + Private returnabilityIndicatorField As ReturnabilityIndicatorType - + Private legalStatusIndicatorField As LegalStatusIndicatorType - + Private airFlowPercentField As AirFlowPercentType - + Private humidityPercentField As HumidityPercentType - + Private animalFoodApprovedIndicatorField As AnimalFoodApprovedIndicatorType - + Private humanFoodApprovedIndicatorField As HumanFoodApprovedIndicatorType - + Private dangerousGoodsApprovedIndicatorField As DangerousGoodsApprovedIndicatorType - + Private refrigeratedIndicatorField As RefrigeratedIndicatorType - + Private characteristicsField As CharacteristicsType - + Private damageRemarksField() As DamageRemarksType - + Private descriptionField() As DescriptionType - + Private specialTransportRequirementsField() As SpecialTransportRequirementsType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private tareWeightMeasureField As TareWeightMeasureType - + Private trackingDeviceCodeField As TrackingDeviceCodeType - + Private powerIndicatorField As PowerIndicatorType - + Private traceIDField As TraceIDType - + Private measurementDimensionField() As DimensionType - + Private transportEquipmentSealField() As TransportEquipmentSealType - + Private minimumTemperatureField As TemperatureType - + Private maximumTemperatureField As TemperatureType - + Private providerPartyField As PartyType - + Private loadingProofPartyField As PartyType - + Private supplierPartyField As SupplierPartyType - + Private ownerPartyField As PartyType - + Private operatingPartyField As PartyType - + Private loadingLocationField As LocationType1 - + Private unloadingLocationField As LocationType1 - + Private storageLocationField As LocationType1 - + Private positioningTransportEventField() As TransportEventType - + Private quarantineTransportEventField() As TransportEventType - + Private deliveryTransportEventField() As TransportEventType - + Private pickupTransportEventField() As TransportEventType - + Private handlingTransportEventField() As TransportEventType - + Private loadingTransportEventField() As TransportEventType - + Private transportEventField() As TransportEventType - + Private applicableTransportMeansField As TransportMeansType - + Private haulageTradingTermsField() As TradingTermsType - + Private hazardousGoodsTransitField() As HazardousGoodsTransitType - + Private packagedTransportHandlingUnitField() As TransportHandlingUnitType - + Private serviceAllowanceChargeField() As AllowanceChargeType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private attachedTransportEquipmentField() As TransportEquipmentType - + Private deliveryField As DeliveryType - + Private pickupField As PickupType - + Private despatchField As DespatchType - + Private shipmentDocumentReferenceField() As DocumentReferenceType - + Private containedInTransportEquipmentField() As TransportEquipmentType - + Private packageField() As PackageType - + Private goodsItemField() As GoodsItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -19745,9 +19745,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ReferencedConsignmentID() As ReferencedConsignmentIDType() Get Return Me.referencedConsignmentIDField @@ -19756,9 +19756,9 @@ Namespace Peppol.BISBilling30Invoice Me.referencedConsignmentIDField = value End Set End Property - + ''' - _ + Public Property TransportEquipmentTypeCode() As TransportEquipmentTypeCodeType Get Return Me.transportEquipmentTypeCodeField @@ -19767,9 +19767,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportEquipmentTypeCodeField = value End Set End Property - + ''' - _ + Public Property ProviderTypeCode() As ProviderTypeCodeType Get Return Me.providerTypeCodeField @@ -19778,9 +19778,9 @@ Namespace Peppol.BISBilling30Invoice Me.providerTypeCodeField = value End Set End Property - + ''' - _ + Public Property OwnerTypeCode() As OwnerTypeCodeType Get Return Me.ownerTypeCodeField @@ -19789,9 +19789,9 @@ Namespace Peppol.BISBilling30Invoice Me.ownerTypeCodeField = value End Set End Property - + ''' - _ + Public Property SizeTypeCode() As SizeTypeCodeType Get Return Me.sizeTypeCodeField @@ -19800,9 +19800,9 @@ Namespace Peppol.BISBilling30Invoice Me.sizeTypeCodeField = value End Set End Property - + ''' - _ + Public Property DispositionCode() As DispositionCodeType Get Return Me.dispositionCodeField @@ -19811,9 +19811,9 @@ Namespace Peppol.BISBilling30Invoice Me.dispositionCodeField = value End Set End Property - + ''' - _ + Public Property FullnessIndicationCode() As FullnessIndicationCodeType Get Return Me.fullnessIndicationCodeField @@ -19822,9 +19822,9 @@ Namespace Peppol.BISBilling30Invoice Me.fullnessIndicationCodeField = value End Set End Property - + ''' - _ + Public Property RefrigerationOnIndicator() As RefrigerationOnIndicatorType Get Return Me.refrigerationOnIndicatorField @@ -19833,9 +19833,9 @@ Namespace Peppol.BISBilling30Invoice Me.refrigerationOnIndicatorField = value End Set End Property - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -19844,9 +19844,9 @@ Namespace Peppol.BISBilling30Invoice Me.informationField = value End Set End Property - + ''' - _ + Public Property ReturnabilityIndicator() As ReturnabilityIndicatorType Get Return Me.returnabilityIndicatorField @@ -19855,9 +19855,9 @@ Namespace Peppol.BISBilling30Invoice Me.returnabilityIndicatorField = value End Set End Property - + ''' - _ + Public Property LegalStatusIndicator() As LegalStatusIndicatorType Get Return Me.legalStatusIndicatorField @@ -19866,9 +19866,9 @@ Namespace Peppol.BISBilling30Invoice Me.legalStatusIndicatorField = value End Set End Property - + ''' - _ + Public Property AirFlowPercent() As AirFlowPercentType Get Return Me.airFlowPercentField @@ -19877,9 +19877,9 @@ Namespace Peppol.BISBilling30Invoice Me.airFlowPercentField = value End Set End Property - + ''' - _ + Public Property HumidityPercent() As HumidityPercentType Get Return Me.humidityPercentField @@ -19888,9 +19888,9 @@ Namespace Peppol.BISBilling30Invoice Me.humidityPercentField = value End Set End Property - + ''' - _ + Public Property AnimalFoodApprovedIndicator() As AnimalFoodApprovedIndicatorType Get Return Me.animalFoodApprovedIndicatorField @@ -19899,9 +19899,9 @@ Namespace Peppol.BISBilling30Invoice Me.animalFoodApprovedIndicatorField = value End Set End Property - + ''' - _ + Public Property HumanFoodApprovedIndicator() As HumanFoodApprovedIndicatorType Get Return Me.humanFoodApprovedIndicatorField @@ -19910,9 +19910,9 @@ Namespace Peppol.BISBilling30Invoice Me.humanFoodApprovedIndicatorField = value End Set End Property - + ''' - _ + Public Property DangerousGoodsApprovedIndicator() As DangerousGoodsApprovedIndicatorType Get Return Me.dangerousGoodsApprovedIndicatorField @@ -19921,9 +19921,9 @@ Namespace Peppol.BISBilling30Invoice Me.dangerousGoodsApprovedIndicatorField = value End Set End Property - + ''' - _ + Public Property RefrigeratedIndicator() As RefrigeratedIndicatorType Get Return Me.refrigeratedIndicatorField @@ -19932,9 +19932,9 @@ Namespace Peppol.BISBilling30Invoice Me.refrigeratedIndicatorField = value End Set End Property - + ''' - _ + Public Property Characteristics() As CharacteristicsType Get Return Me.characteristicsField @@ -19943,9 +19943,9 @@ Namespace Peppol.BISBilling30Invoice Me.characteristicsField = value End Set End Property - + ''' - _ + Public Property DamageRemarks() As DamageRemarksType() Get Return Me.damageRemarksField @@ -19954,9 +19954,9 @@ Namespace Peppol.BISBilling30Invoice Me.damageRemarksField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -19965,9 +19965,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property SpecialTransportRequirements() As SpecialTransportRequirementsType() Get Return Me.specialTransportRequirementsField @@ -19976,9 +19976,9 @@ Namespace Peppol.BISBilling30Invoice Me.specialTransportRequirementsField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -19987,9 +19987,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -19998,9 +19998,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property TareWeightMeasure() As TareWeightMeasureType Get Return Me.tareWeightMeasureField @@ -20009,9 +20009,9 @@ Namespace Peppol.BISBilling30Invoice Me.tareWeightMeasureField = value End Set End Property - + ''' - _ + Public Property TrackingDeviceCode() As TrackingDeviceCodeType Get Return Me.trackingDeviceCodeField @@ -20020,9 +20020,9 @@ Namespace Peppol.BISBilling30Invoice Me.trackingDeviceCodeField = value End Set End Property - + ''' - _ + Public Property PowerIndicator() As PowerIndicatorType Get Return Me.powerIndicatorField @@ -20031,9 +20031,9 @@ Namespace Peppol.BISBilling30Invoice Me.powerIndicatorField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -20042,9 +20042,9 @@ Namespace Peppol.BISBilling30Invoice Me.traceIDField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -20053,9 +20053,9 @@ Namespace Peppol.BISBilling30Invoice Me.measurementDimensionField = value End Set End Property - + ''' - _ + Public Property TransportEquipmentSeal() As TransportEquipmentSealType() Get Return Me.transportEquipmentSealField @@ -20064,7 +20064,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportEquipmentSealField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -20074,7 +20074,7 @@ Namespace Peppol.BISBilling30Invoice Me.minimumTemperatureField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -20084,7 +20084,7 @@ Namespace Peppol.BISBilling30Invoice Me.maximumTemperatureField = value End Set End Property - + ''' Public Property ProviderParty() As PartyType Get @@ -20094,7 +20094,7 @@ Namespace Peppol.BISBilling30Invoice Me.providerPartyField = value End Set End Property - + ''' Public Property LoadingProofParty() As PartyType Get @@ -20104,7 +20104,7 @@ Namespace Peppol.BISBilling30Invoice Me.loadingProofPartyField = value End Set End Property - + ''' Public Property SupplierParty() As SupplierPartyType Get @@ -20114,7 +20114,7 @@ Namespace Peppol.BISBilling30Invoice Me.supplierPartyField = value End Set End Property - + ''' Public Property OwnerParty() As PartyType Get @@ -20124,7 +20124,7 @@ Namespace Peppol.BISBilling30Invoice Me.ownerPartyField = value End Set End Property - + ''' Public Property OperatingParty() As PartyType Get @@ -20134,7 +20134,7 @@ Namespace Peppol.BISBilling30Invoice Me.operatingPartyField = value End Set End Property - + ''' Public Property LoadingLocation() As LocationType1 Get @@ -20144,7 +20144,7 @@ Namespace Peppol.BISBilling30Invoice Me.loadingLocationField = value End Set End Property - + ''' Public Property UnloadingLocation() As LocationType1 Get @@ -20154,7 +20154,7 @@ Namespace Peppol.BISBilling30Invoice Me.unloadingLocationField = value End Set End Property - + ''' Public Property StorageLocation() As LocationType1 Get @@ -20164,9 +20164,9 @@ Namespace Peppol.BISBilling30Invoice Me.storageLocationField = value End Set End Property - + ''' - _ + Public Property PositioningTransportEvent() As TransportEventType() Get Return Me.positioningTransportEventField @@ -20175,9 +20175,9 @@ Namespace Peppol.BISBilling30Invoice Me.positioningTransportEventField = value End Set End Property - + ''' - _ + Public Property QuarantineTransportEvent() As TransportEventType() Get Return Me.quarantineTransportEventField @@ -20186,9 +20186,9 @@ Namespace Peppol.BISBilling30Invoice Me.quarantineTransportEventField = value End Set End Property - + ''' - _ + Public Property DeliveryTransportEvent() As TransportEventType() Get Return Me.deliveryTransportEventField @@ -20197,9 +20197,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTransportEventField = value End Set End Property - + ''' - _ + Public Property PickupTransportEvent() As TransportEventType() Get Return Me.pickupTransportEventField @@ -20208,9 +20208,9 @@ Namespace Peppol.BISBilling30Invoice Me.pickupTransportEventField = value End Set End Property - + ''' - _ + Public Property HandlingTransportEvent() As TransportEventType() Get Return Me.handlingTransportEventField @@ -20219,9 +20219,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingTransportEventField = value End Set End Property - + ''' - _ + Public Property LoadingTransportEvent() As TransportEventType() Get Return Me.loadingTransportEventField @@ -20230,9 +20230,9 @@ Namespace Peppol.BISBilling30Invoice Me.loadingTransportEventField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -20241,7 +20241,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportEventField = value End Set End Property - + ''' Public Property ApplicableTransportMeans() As TransportMeansType Get @@ -20251,9 +20251,9 @@ Namespace Peppol.BISBilling30Invoice Me.applicableTransportMeansField = value End Set End Property - + ''' - _ + Public Property HaulageTradingTerms() As TradingTermsType() Get Return Me.haulageTradingTermsField @@ -20262,9 +20262,9 @@ Namespace Peppol.BISBilling30Invoice Me.haulageTradingTermsField = value End Set End Property - + ''' - _ + Public Property HazardousGoodsTransit() As HazardousGoodsTransitType() Get Return Me.hazardousGoodsTransitField @@ -20273,9 +20273,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousGoodsTransitField = value End Set End Property - + ''' - _ + Public Property PackagedTransportHandlingUnit() As TransportHandlingUnitType() Get Return Me.packagedTransportHandlingUnitField @@ -20284,9 +20284,9 @@ Namespace Peppol.BISBilling30Invoice Me.packagedTransportHandlingUnitField = value End Set End Property - + ''' - _ + Public Property ServiceAllowanceCharge() As AllowanceChargeType() Get Return Me.serviceAllowanceChargeField @@ -20295,9 +20295,9 @@ Namespace Peppol.BISBilling30Invoice Me.serviceAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -20306,9 +20306,9 @@ Namespace Peppol.BISBilling30Invoice Me.freightAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property AttachedTransportEquipment() As TransportEquipmentType() Get Return Me.attachedTransportEquipmentField @@ -20317,7 +20317,7 @@ Namespace Peppol.BISBilling30Invoice Me.attachedTransportEquipmentField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -20327,7 +20327,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' Public Property Pickup() As PickupType Get @@ -20337,7 +20337,7 @@ Namespace Peppol.BISBilling30Invoice Me.pickupField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -20347,9 +20347,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchField = value End Set End Property - + ''' - _ + Public Property ShipmentDocumentReference() As DocumentReferenceType() Get Return Me.shipmentDocumentReferenceField @@ -20358,9 +20358,9 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ContainedInTransportEquipment() As TransportEquipmentType() Get Return Me.containedInTransportEquipmentField @@ -20369,9 +20369,9 @@ Namespace Peppol.BISBilling30Invoice Me.containedInTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property Package() As PackageType() Get Return Me.packageField @@ -20380,9 +20380,9 @@ Namespace Peppol.BISBilling30Invoice Me.packageField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -20392,28 +20392,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DimensionType - + Private attributeIDField As AttributeIDType - + Private measureField As MeasureType2 - + Private descriptionField() As DescriptionType - + Private minimumMeasureField As MinimumMeasureType - + Private maximumMeasureField As MaximumMeasureType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -20422,9 +20422,9 @@ Namespace Peppol.BISBilling30Invoice Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property Measure() As MeasureType2 Get Return Me.measureField @@ -20433,9 +20433,9 @@ Namespace Peppol.BISBilling30Invoice Me.measureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -20444,9 +20444,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property MinimumMeasure() As MinimumMeasureType Get Return Me.minimumMeasureField @@ -20455,9 +20455,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumMeasureField = value End Set End Property - + ''' - _ + Public Property MaximumMeasure() As MaximumMeasureType Get Return Me.maximumMeasureField @@ -20467,28 +20467,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportEquipmentSealType - + Private idField As IDType - + Private sealIssuerTypeCodeField As SealIssuerTypeCodeType - + Private conditionField As ConditionType - + Private sealStatusCodeField As SealStatusCodeType - + Private sealingPartyTypeField As SealingPartyTypeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -20497,9 +20497,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SealIssuerTypeCode() As SealIssuerTypeCodeType Get Return Me.sealIssuerTypeCodeField @@ -20508,9 +20508,9 @@ Namespace Peppol.BISBilling30Invoice Me.sealIssuerTypeCodeField = value End Set End Property - + ''' - _ + Public Property Condition() As ConditionType Get Return Me.conditionField @@ -20519,9 +20519,9 @@ Namespace Peppol.BISBilling30Invoice Me.conditionField = value End Set End Property - + ''' - _ + Public Property SealStatusCode() As SealStatusCodeType Get Return Me.sealStatusCodeField @@ -20530,9 +20530,9 @@ Namespace Peppol.BISBilling30Invoice Me.sealStatusCodeField = value End Set End Property - + ''' - _ + Public Property SealingPartyType() As SealingPartyTypeType Get Return Me.sealingPartyTypeField @@ -20542,24 +20542,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TemperatureType - + Private attributeIDField As AttributeIDType - + Private measureField As MeasureType2 - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -20568,9 +20568,9 @@ Namespace Peppol.BISBilling30Invoice Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property Measure() As MeasureType2 Get Return Me.measureField @@ -20579,9 +20579,9 @@ Namespace Peppol.BISBilling30Invoice Me.measureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -20591,32 +20591,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SupplierPartyType - + Private customerAssignedAccountIDField As CustomerAssignedAccountIDType - + Private additionalAccountIDField() As AdditionalAccountIDType - + Private dataSendingCapabilityField As DataSendingCapabilityType - + Private partyField As PartyType - + Private despatchContactField As ContactType - + Private accountingContactField As ContactType - + Private sellerContactField As ContactType - + ''' - _ + Public Property CustomerAssignedAccountID() As CustomerAssignedAccountIDType Get Return Me.customerAssignedAccountIDField @@ -20625,9 +20625,9 @@ Namespace Peppol.BISBilling30Invoice Me.customerAssignedAccountIDField = value End Set End Property - + ''' - _ + Public Property AdditionalAccountID() As AdditionalAccountIDType() Get Return Me.additionalAccountIDField @@ -20636,9 +20636,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalAccountIDField = value End Set End Property - + ''' - _ + Public Property DataSendingCapability() As DataSendingCapabilityType Get Return Me.dataSendingCapabilityField @@ -20647,7 +20647,7 @@ Namespace Peppol.BISBilling30Invoice Me.dataSendingCapabilityField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -20657,7 +20657,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyField = value End Set End Property - + ''' Public Property DespatchContact() As ContactType Get @@ -20667,7 +20667,7 @@ Namespace Peppol.BISBilling30Invoice Me.despatchContactField = value End Set End Property - + ''' Public Property AccountingContact() As ContactType Get @@ -20677,7 +20677,7 @@ Namespace Peppol.BISBilling30Invoice Me.accountingContactField = value End Set End Property - + ''' Public Property SellerContact() As ContactType Get @@ -20688,44 +20688,44 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportMeansType - + Private journeyIDField As JourneyIDType - + Private registrationNationalityIDField As RegistrationNationalityIDType - + Private registrationNationalityField() As RegistrationNationalityType - + Private directionCodeField As DirectionCodeType - + Private transportMeansTypeCodeField As TransportMeansTypeCodeType - + Private tradeServiceCodeField As TradeServiceCodeType - + Private stowageField As StowageType - + Private airTransportField As AirTransportType - + Private roadTransportField As RoadTransportType - + Private railTransportField As RailTransportType - + Private maritimeTransportField As MaritimeTransportType - + Private ownerPartyField As PartyType - + Private measurementDimensionField() As DimensionType - + ''' - _ + Public Property JourneyID() As JourneyIDType Get Return Me.journeyIDField @@ -20734,9 +20734,9 @@ Namespace Peppol.BISBilling30Invoice Me.journeyIDField = value End Set End Property - + ''' - _ + Public Property RegistrationNationalityID() As RegistrationNationalityIDType Get Return Me.registrationNationalityIDField @@ -20745,9 +20745,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationNationalityIDField = value End Set End Property - + ''' - _ + Public Property RegistrationNationality() As RegistrationNationalityType() Get Return Me.registrationNationalityField @@ -20756,9 +20756,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationNationalityField = value End Set End Property - + ''' - _ + Public Property DirectionCode() As DirectionCodeType Get Return Me.directionCodeField @@ -20767,9 +20767,9 @@ Namespace Peppol.BISBilling30Invoice Me.directionCodeField = value End Set End Property - + ''' - _ + Public Property TransportMeansTypeCode() As TransportMeansTypeCodeType Get Return Me.transportMeansTypeCodeField @@ -20778,9 +20778,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportMeansTypeCodeField = value End Set End Property - + ''' - _ + Public Property TradeServiceCode() As TradeServiceCodeType Get Return Me.tradeServiceCodeField @@ -20789,7 +20789,7 @@ Namespace Peppol.BISBilling30Invoice Me.tradeServiceCodeField = value End Set End Property - + ''' Public Property Stowage() As StowageType Get @@ -20799,7 +20799,7 @@ Namespace Peppol.BISBilling30Invoice Me.stowageField = value End Set End Property - + ''' Public Property AirTransport() As AirTransportType Get @@ -20809,7 +20809,7 @@ Namespace Peppol.BISBilling30Invoice Me.airTransportField = value End Set End Property - + ''' Public Property RoadTransport() As RoadTransportType Get @@ -20819,7 +20819,7 @@ Namespace Peppol.BISBilling30Invoice Me.roadTransportField = value End Set End Property - + ''' Public Property RailTransport() As RailTransportType Get @@ -20829,7 +20829,7 @@ Namespace Peppol.BISBilling30Invoice Me.railTransportField = value End Set End Property - + ''' Public Property MaritimeTransport() As MaritimeTransportType Get @@ -20839,7 +20839,7 @@ Namespace Peppol.BISBilling30Invoice Me.maritimeTransportField = value End Set End Property - + ''' Public Property OwnerParty() As PartyType Get @@ -20849,9 +20849,9 @@ Namespace Peppol.BISBilling30Invoice Me.ownerPartyField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -20861,24 +20861,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class StowageType - + Private locationIDField As LocationIDType - + Private locationField() As LocationType - + Private measurementDimensionField() As DimensionType - + ''' - _ + Public Property LocationID() As LocationIDType Get Return Me.locationIDField @@ -20887,9 +20887,9 @@ Namespace Peppol.BISBilling30Invoice Me.locationIDField = value End Set End Property - + ''' - _ + Public Property Location() As LocationType() Get Return Me.locationField @@ -20898,9 +20898,9 @@ Namespace Peppol.BISBilling30Invoice Me.locationField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -20910,20 +20910,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AirTransportType - + Private aircraftIDField As AircraftIDType - + ''' - _ + Public Property AircraftID() As AircraftIDType Get Return Me.aircraftIDField @@ -20933,20 +20933,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RoadTransportType - + Private licensePlateIDField As LicensePlateIDType - + ''' - _ + Public Property LicensePlateID() As LicensePlateIDType Get Return Me.licensePlateIDField @@ -20956,22 +20956,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RailTransportType - + Private trainIDField As TrainIDType - + Private railCarIDField As RailCarIDType - + ''' - _ + Public Property TrainID() As TrainIDType Get Return Me.trainIDField @@ -20980,9 +20980,9 @@ Namespace Peppol.BISBilling30Invoice Me.trainIDField = value End Set End Property - + ''' - _ + Public Property RailCarID() As RailCarIDType Get Return Me.railCarIDField @@ -20992,34 +20992,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MaritimeTransportType - + Private vesselIDField As VesselIDType - + Private vesselNameField As VesselNameType - + Private radioCallSignIDField As RadioCallSignIDType - + Private shipsRequirementsField() As ShipsRequirementsType - + Private grossTonnageMeasureField As GrossTonnageMeasureType - + Private netTonnageMeasureField As NetTonnageMeasureType - + Private registryCertificateDocumentReferenceField As DocumentReferenceType - + Private registryPortLocationField As LocationType1 - + ''' - _ + Public Property VesselID() As VesselIDType Get Return Me.vesselIDField @@ -21028,9 +21028,9 @@ Namespace Peppol.BISBilling30Invoice Me.vesselIDField = value End Set End Property - + ''' - _ + Public Property VesselName() As VesselNameType Get Return Me.vesselNameField @@ -21039,9 +21039,9 @@ Namespace Peppol.BISBilling30Invoice Me.vesselNameField = value End Set End Property - + ''' - _ + Public Property RadioCallSignID() As RadioCallSignIDType Get Return Me.radioCallSignIDField @@ -21050,9 +21050,9 @@ Namespace Peppol.BISBilling30Invoice Me.radioCallSignIDField = value End Set End Property - + ''' - _ + Public Property ShipsRequirements() As ShipsRequirementsType() Get Return Me.shipsRequirementsField @@ -21061,9 +21061,9 @@ Namespace Peppol.BISBilling30Invoice Me.shipsRequirementsField = value End Set End Property - + ''' - _ + Public Property GrossTonnageMeasure() As GrossTonnageMeasureType Get Return Me.grossTonnageMeasureField @@ -21072,9 +21072,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossTonnageMeasureField = value End Set End Property - + ''' - _ + Public Property NetTonnageMeasure() As NetTonnageMeasureType Get Return Me.netTonnageMeasureField @@ -21083,7 +21083,7 @@ Namespace Peppol.BISBilling30Invoice Me.netTonnageMeasureField = value End Set End Property - + ''' Public Property RegistryCertificateDocumentReference() As DocumentReferenceType Get @@ -21093,7 +21093,7 @@ Namespace Peppol.BISBilling30Invoice Me.registryCertificateDocumentReferenceField = value End Set End Property - + ''' Public Property RegistryPortLocation() As LocationType1 Get @@ -21104,24 +21104,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TradingTermsType - + Private informationField() As InformationType - + Private referenceField As ReferenceType - + Private applicableAddressField As AddressType - + ''' - _ + Public Property Information() As InformationType() Get Return Me.informationField @@ -21130,9 +21130,9 @@ Namespace Peppol.BISBilling30Invoice Me.informationField = value End Set End Property - + ''' - _ + Public Property Reference() As ReferenceType Get Return Me.referenceField @@ -21141,7 +21141,7 @@ Namespace Peppol.BISBilling30Invoice Me.referenceField = value End Set End Property - + ''' Public Property ApplicableAddress() As AddressType Get @@ -21152,32 +21152,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class HazardousGoodsTransitType - + Private transportEmergencyCardCodeField As TransportEmergencyCardCodeType - + Private packingCriteriaCodeField As PackingCriteriaCodeType - + Private hazardousRegulationCodeField As HazardousRegulationCodeType - + Private inhalationToxicityZoneCodeField As InhalationToxicityZoneCodeType - + Private transportAuthorizationCodeField As TransportAuthorizationCodeType - + Private maximumTemperatureField As TemperatureType - + Private minimumTemperatureField As TemperatureType - + ''' - _ + Public Property TransportEmergencyCardCode() As TransportEmergencyCardCodeType Get Return Me.transportEmergencyCardCodeField @@ -21186,9 +21186,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportEmergencyCardCodeField = value End Set End Property - + ''' - _ + Public Property PackingCriteriaCode() As PackingCriteriaCodeType Get Return Me.packingCriteriaCodeField @@ -21197,9 +21197,9 @@ Namespace Peppol.BISBilling30Invoice Me.packingCriteriaCodeField = value End Set End Property - + ''' - _ + Public Property HazardousRegulationCode() As HazardousRegulationCodeType Get Return Me.hazardousRegulationCodeField @@ -21208,9 +21208,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousRegulationCodeField = value End Set End Property - + ''' - _ + Public Property InhalationToxicityZoneCode() As InhalationToxicityZoneCodeType Get Return Me.inhalationToxicityZoneCodeField @@ -21219,9 +21219,9 @@ Namespace Peppol.BISBilling30Invoice Me.inhalationToxicityZoneCodeField = value End Set End Property - + ''' - _ + Public Property TransportAuthorizationCode() As TransportAuthorizationCodeType Get Return Me.transportAuthorizationCodeField @@ -21230,7 +21230,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportAuthorizationCodeField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -21240,7 +21240,7 @@ Namespace Peppol.BISBilling30Invoice Me.maximumTemperatureField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -21251,72 +21251,72 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportHandlingUnitType - + Private idField As IDType - + Private transportHandlingUnitTypeCodeField As TransportHandlingUnitTypeCodeType - + Private handlingCodeField As HandlingCodeType - + Private handlingInstructionsField() As HandlingInstructionsType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private totalGoodsItemQuantityField As TotalGoodsItemQuantityType - + Private totalPackageQuantityField As TotalPackageQuantityType - + Private damageRemarksField() As DamageRemarksType - + Private shippingMarksField() As ShippingMarksType - + Private traceIDField As TraceIDType - + Private handlingUnitDespatchLineField() As DespatchLineType - + Private actualPackageField() As PackageType - + Private receivedHandlingUnitReceiptLineField() As ReceiptLineType - + Private transportEquipmentField() As TransportEquipmentType - + Private transportMeansField() As TransportMeansType - + Private hazardousGoodsTransitField() As HazardousGoodsTransitType - + Private measurementDimensionField() As DimensionType - + Private minimumTemperatureField As TemperatureType - + Private maximumTemperatureField As TemperatureType - + Private goodsItemField() As GoodsItemType - + Private floorSpaceMeasurementDimensionField As DimensionType - + Private palletSpaceMeasurementDimensionField As DimensionType - + Private shipmentDocumentReferenceField() As DocumentReferenceType - + Private statusField() As StatusType - + Private customsDeclarationField() As CustomsDeclarationType - + Private referencedShipmentField() As ShipmentType - + Private packageField() As PackageType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -21325,9 +21325,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property TransportHandlingUnitTypeCode() As TransportHandlingUnitTypeCodeType Get Return Me.transportHandlingUnitTypeCodeField @@ -21336,9 +21336,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportHandlingUnitTypeCodeField = value End Set End Property - + ''' - _ + Public Property HandlingCode() As HandlingCodeType Get Return Me.handlingCodeField @@ -21347,9 +21347,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingCodeField = value End Set End Property - + ''' - _ + Public Property HandlingInstructions() As HandlingInstructionsType() Get Return Me.handlingInstructionsField @@ -21358,9 +21358,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingInstructionsField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -21369,9 +21369,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property TotalGoodsItemQuantity() As TotalGoodsItemQuantityType Get Return Me.totalGoodsItemQuantityField @@ -21380,9 +21380,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalGoodsItemQuantityField = value End Set End Property - + ''' - _ + Public Property TotalPackageQuantity() As TotalPackageQuantityType Get Return Me.totalPackageQuantityField @@ -21391,9 +21391,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalPackageQuantityField = value End Set End Property - + ''' - _ + Public Property DamageRemarks() As DamageRemarksType() Get Return Me.damageRemarksField @@ -21402,9 +21402,9 @@ Namespace Peppol.BISBilling30Invoice Me.damageRemarksField = value End Set End Property - + ''' - _ + Public Property ShippingMarks() As ShippingMarksType() Get Return Me.shippingMarksField @@ -21413,9 +21413,9 @@ Namespace Peppol.BISBilling30Invoice Me.shippingMarksField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -21424,9 +21424,9 @@ Namespace Peppol.BISBilling30Invoice Me.traceIDField = value End Set End Property - + ''' - _ + Public Property HandlingUnitDespatchLine() As DespatchLineType() Get Return Me.handlingUnitDespatchLineField @@ -21435,9 +21435,9 @@ Namespace Peppol.BISBilling30Invoice Me.handlingUnitDespatchLineField = value End Set End Property - + ''' - _ + Public Property ActualPackage() As PackageType() Get Return Me.actualPackageField @@ -21446,9 +21446,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualPackageField = value End Set End Property - + ''' - _ + Public Property ReceivedHandlingUnitReceiptLine() As ReceiptLineType() Get Return Me.receivedHandlingUnitReceiptLineField @@ -21457,9 +21457,9 @@ Namespace Peppol.BISBilling30Invoice Me.receivedHandlingUnitReceiptLineField = value End Set End Property - + ''' - _ + Public Property TransportEquipment() As TransportEquipmentType() Get Return Me.transportEquipmentField @@ -21468,9 +21468,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportEquipmentField = value End Set End Property - + ''' - _ + Public Property TransportMeans() As TransportMeansType() Get Return Me.transportMeansField @@ -21479,9 +21479,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportMeansField = value End Set End Property - + ''' - _ + Public Property HazardousGoodsTransit() As HazardousGoodsTransitType() Get Return Me.hazardousGoodsTransitField @@ -21490,9 +21490,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousGoodsTransitField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -21501,7 +21501,7 @@ Namespace Peppol.BISBilling30Invoice Me.measurementDimensionField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -21511,7 +21511,7 @@ Namespace Peppol.BISBilling30Invoice Me.minimumTemperatureField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -21521,9 +21521,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumTemperatureField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -21532,7 +21532,7 @@ Namespace Peppol.BISBilling30Invoice Me.goodsItemField = value End Set End Property - + ''' Public Property FloorSpaceMeasurementDimension() As DimensionType Get @@ -21542,7 +21542,7 @@ Namespace Peppol.BISBilling30Invoice Me.floorSpaceMeasurementDimensionField = value End Set End Property - + ''' Public Property PalletSpaceMeasurementDimension() As DimensionType Get @@ -21552,9 +21552,9 @@ Namespace Peppol.BISBilling30Invoice Me.palletSpaceMeasurementDimensionField = value End Set End Property - + ''' - _ + Public Property ShipmentDocumentReference() As DocumentReferenceType() Get Return Me.shipmentDocumentReferenceField @@ -21563,9 +21563,9 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property Status() As StatusType() Get Return Me.statusField @@ -21574,9 +21574,9 @@ Namespace Peppol.BISBilling30Invoice Me.statusField = value End Set End Property - + ''' - _ + Public Property CustomsDeclaration() As CustomsDeclarationType() Get Return Me.customsDeclarationField @@ -21585,9 +21585,9 @@ Namespace Peppol.BISBilling30Invoice Me.customsDeclarationField = value End Set End Property - + ''' - _ + Public Property ReferencedShipment() As ShipmentType() Get Return Me.referencedShipmentField @@ -21596,9 +21596,9 @@ Namespace Peppol.BISBilling30Invoice Me.referencedShipmentField = value End Set End Property - + ''' - _ + Public Property Package() As PackageType() Get Return Me.packageField @@ -21608,46 +21608,46 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DespatchLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private lineStatusCodeField As LineStatusCodeType - + Private deliveredQuantityField As DeliveredQuantityType - + Private backorderQuantityField As BackorderQuantityType - + Private backorderReasonField() As BackorderReasonType - + Private outstandingQuantityField As OutstandingQuantityType - + Private outstandingReasonField() As OutstandingReasonType - + Private oversupplyQuantityField As OversupplyQuantityType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField As ItemType - + Private shipmentField() As ShipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -21656,9 +21656,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -21667,9 +21667,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -21678,9 +21678,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -21689,9 +21689,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineStatusCodeField = value End Set End Property - + ''' - _ + Public Property DeliveredQuantity() As DeliveredQuantityType Get Return Me.deliveredQuantityField @@ -21700,9 +21700,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveredQuantityField = value End Set End Property - + ''' - _ + Public Property BackorderQuantity() As BackorderQuantityType Get Return Me.backorderQuantityField @@ -21711,9 +21711,9 @@ Namespace Peppol.BISBilling30Invoice Me.backorderQuantityField = value End Set End Property - + ''' - _ + Public Property BackorderReason() As BackorderReasonType() Get Return Me.backorderReasonField @@ -21722,9 +21722,9 @@ Namespace Peppol.BISBilling30Invoice Me.backorderReasonField = value End Set End Property - + ''' - _ + Public Property OutstandingQuantity() As OutstandingQuantityType Get Return Me.outstandingQuantityField @@ -21733,9 +21733,9 @@ Namespace Peppol.BISBilling30Invoice Me.outstandingQuantityField = value End Set End Property - + ''' - _ + Public Property OutstandingReason() As OutstandingReasonType() Get Return Me.outstandingReasonField @@ -21744,9 +21744,9 @@ Namespace Peppol.BISBilling30Invoice Me.outstandingReasonField = value End Set End Property - + ''' - _ + Public Property OversupplyQuantity() As OversupplyQuantityType Get Return Me.oversupplyQuantityField @@ -21755,9 +21755,9 @@ Namespace Peppol.BISBilling30Invoice Me.oversupplyQuantityField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -21766,9 +21766,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -21777,7 +21777,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -21787,9 +21787,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property Shipment() As ShipmentType() Get Return Me.shipmentField @@ -21799,28 +21799,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class OrderLineReferenceType - + Private lineIDField As LineIDType - + Private salesOrderLineIDField As SalesOrderLineIDType - + Private uUIDField As UUIDType - + Private lineStatusCodeField As LineStatusCodeType - + Private orderReferenceField As OrderReferenceType - + ''' - _ + Public Property LineID() As LineIDType Get Return Me.lineIDField @@ -21829,9 +21829,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineIDField = value End Set End Property - + ''' - _ + Public Property SalesOrderLineID() As SalesOrderLineIDType Get Return Me.salesOrderLineIDField @@ -21840,9 +21840,9 @@ Namespace Peppol.BISBilling30Invoice Me.salesOrderLineIDField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -21851,9 +21851,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -21862,7 +21862,7 @@ Namespace Peppol.BISBilling30Invoice Me.lineStatusCodeField = value End Set End Property - + ''' Public Property OrderReference() As OrderReferenceType Get @@ -21873,36 +21873,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class OrderReferenceType - + Private idField As IDType - + Private salesOrderIDField As SalesOrderIDType - + Private copyIndicatorField As CopyIndicatorType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private customerReferenceField As CustomerReferenceType - + Private orderTypeCodeField As OrderTypeCodeType - + Private documentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -21911,9 +21911,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SalesOrderID() As SalesOrderIDType Get Return Me.salesOrderIDField @@ -21922,9 +21922,9 @@ Namespace Peppol.BISBilling30Invoice Me.salesOrderIDField = value End Set End Property - + ''' - _ + Public Property CopyIndicator() As CopyIndicatorType Get Return Me.copyIndicatorField @@ -21933,9 +21933,9 @@ Namespace Peppol.BISBilling30Invoice Me.copyIndicatorField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -21944,9 +21944,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -21955,9 +21955,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -21966,9 +21966,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property CustomerReference() As CustomerReferenceType Get Return Me.customerReferenceField @@ -21977,9 +21977,9 @@ Namespace Peppol.BISBilling30Invoice Me.customerReferenceField = value End Set End Property - + ''' - _ + Public Property OrderTypeCode() As OrderTypeCodeType Get Return Me.orderTypeCodeField @@ -21988,7 +21988,7 @@ Namespace Peppol.BISBilling30Invoice Me.orderTypeCodeField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -21999,78 +21999,78 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemType - + Private descriptionField() As DescriptionType - + Private packQuantityField As PackQuantityType - + Private packSizeNumericField As PackSizeNumericType - + Private catalogueIndicatorField As CatalogueIndicatorType - + Private nameField As NameType1 - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private additionalInformationField() As AdditionalInformationType - + Private keywordField() As KeywordType - + Private brandNameField() As BrandNameType - + Private modelNameField() As ModelNameType - + Private buyersItemIdentificationField As ItemIdentificationType - + Private sellersItemIdentificationField As ItemIdentificationType - + Private manufacturersItemIdentificationField() As ItemIdentificationType - + Private standardItemIdentificationField As ItemIdentificationType - + Private catalogueItemIdentificationField As ItemIdentificationType - + Private additionalItemIdentificationField() As ItemIdentificationType - + Private catalogueDocumentReferenceField As DocumentReferenceType - + Private itemSpecificationDocumentReferenceField() As DocumentReferenceType - + Private originCountryField As CountryType - + Private commodityClassificationField() As CommodityClassificationType - + Private transactionConditionsField() As TransactionConditionsType - + Private hazardousItemField() As HazardousItemType - + Private classifiedTaxCategoryField() As TaxCategoryType - + Private additionalItemPropertyField() As ItemPropertyType - + Private manufacturerPartyField() As PartyType - + Private informationContentProviderPartyField As PartyType - + Private originAddressField() As AddressType - + Private itemInstanceField() As ItemInstanceType - + Private certificateField() As CertificateType - + Private dimensionField() As DimensionType - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -22079,9 +22079,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property PackQuantity() As PackQuantityType Get Return Me.packQuantityField @@ -22090,9 +22090,9 @@ Namespace Peppol.BISBilling30Invoice Me.packQuantityField = value End Set End Property - + ''' - _ + Public Property PackSizeNumeric() As PackSizeNumericType Get Return Me.packSizeNumericField @@ -22101,9 +22101,9 @@ Namespace Peppol.BISBilling30Invoice Me.packSizeNumericField = value End Set End Property - + ''' - _ + Public Property CatalogueIndicator() As CatalogueIndicatorType Get Return Me.catalogueIndicatorField @@ -22112,9 +22112,9 @@ Namespace Peppol.BISBilling30Invoice Me.catalogueIndicatorField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -22123,9 +22123,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -22134,9 +22134,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property AdditionalInformation() As AdditionalInformationType() Get Return Me.additionalInformationField @@ -22145,9 +22145,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalInformationField = value End Set End Property - + ''' - _ + Public Property Keyword() As KeywordType() Get Return Me.keywordField @@ -22156,9 +22156,9 @@ Namespace Peppol.BISBilling30Invoice Me.keywordField = value End Set End Property - + ''' - _ + Public Property BrandName() As BrandNameType() Get Return Me.brandNameField @@ -22167,9 +22167,9 @@ Namespace Peppol.BISBilling30Invoice Me.brandNameField = value End Set End Property - + ''' - _ + Public Property ModelName() As ModelNameType() Get Return Me.modelNameField @@ -22178,7 +22178,7 @@ Namespace Peppol.BISBilling30Invoice Me.modelNameField = value End Set End Property - + ''' Public Property BuyersItemIdentification() As ItemIdentificationType Get @@ -22188,7 +22188,7 @@ Namespace Peppol.BISBilling30Invoice Me.buyersItemIdentificationField = value End Set End Property - + ''' Public Property SellersItemIdentification() As ItemIdentificationType Get @@ -22198,9 +22198,9 @@ Namespace Peppol.BISBilling30Invoice Me.sellersItemIdentificationField = value End Set End Property - + ''' - _ + Public Property ManufacturersItemIdentification() As ItemIdentificationType() Get Return Me.manufacturersItemIdentificationField @@ -22209,7 +22209,7 @@ Namespace Peppol.BISBilling30Invoice Me.manufacturersItemIdentificationField = value End Set End Property - + ''' Public Property StandardItemIdentification() As ItemIdentificationType Get @@ -22219,7 +22219,7 @@ Namespace Peppol.BISBilling30Invoice Me.standardItemIdentificationField = value End Set End Property - + ''' Public Property CatalogueItemIdentification() As ItemIdentificationType Get @@ -22229,9 +22229,9 @@ Namespace Peppol.BISBilling30Invoice Me.catalogueItemIdentificationField = value End Set End Property - + ''' - _ + Public Property AdditionalItemIdentification() As ItemIdentificationType() Get Return Me.additionalItemIdentificationField @@ -22240,7 +22240,7 @@ Namespace Peppol.BISBilling30Invoice Me.additionalItemIdentificationField = value End Set End Property - + ''' Public Property CatalogueDocumentReference() As DocumentReferenceType Get @@ -22250,9 +22250,9 @@ Namespace Peppol.BISBilling30Invoice Me.catalogueDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ItemSpecificationDocumentReference() As DocumentReferenceType() Get Return Me.itemSpecificationDocumentReferenceField @@ -22261,7 +22261,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemSpecificationDocumentReferenceField = value End Set End Property - + ''' Public Property OriginCountry() As CountryType Get @@ -22271,9 +22271,9 @@ Namespace Peppol.BISBilling30Invoice Me.originCountryField = value End Set End Property - + ''' - _ + Public Property CommodityClassification() As CommodityClassificationType() Get Return Me.commodityClassificationField @@ -22282,9 +22282,9 @@ Namespace Peppol.BISBilling30Invoice Me.commodityClassificationField = value End Set End Property - + ''' - _ + Public Property TransactionConditions() As TransactionConditionsType() Get Return Me.transactionConditionsField @@ -22293,9 +22293,9 @@ Namespace Peppol.BISBilling30Invoice Me.transactionConditionsField = value End Set End Property - + ''' - _ + Public Property HazardousItem() As HazardousItemType() Get Return Me.hazardousItemField @@ -22304,9 +22304,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousItemField = value End Set End Property - + ''' - _ + Public Property ClassifiedTaxCategory() As TaxCategoryType() Get Return Me.classifiedTaxCategoryField @@ -22315,9 +22315,9 @@ Namespace Peppol.BISBilling30Invoice Me.classifiedTaxCategoryField = value End Set End Property - + ''' - _ + Public Property AdditionalItemProperty() As ItemPropertyType() Get Return Me.additionalItemPropertyField @@ -22326,9 +22326,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalItemPropertyField = value End Set End Property - + ''' - _ + Public Property ManufacturerParty() As PartyType() Get Return Me.manufacturerPartyField @@ -22337,7 +22337,7 @@ Namespace Peppol.BISBilling30Invoice Me.manufacturerPartyField = value End Set End Property - + ''' Public Property InformationContentProviderParty() As PartyType Get @@ -22347,9 +22347,9 @@ Namespace Peppol.BISBilling30Invoice Me.informationContentProviderPartyField = value End Set End Property - + ''' - _ + Public Property OriginAddress() As AddressType() Get Return Me.originAddressField @@ -22358,9 +22358,9 @@ Namespace Peppol.BISBilling30Invoice Me.originAddressField = value End Set End Property - + ''' - _ + Public Property ItemInstance() As ItemInstanceType() Get Return Me.itemInstanceField @@ -22369,9 +22369,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemInstanceField = value End Set End Property - + ''' - _ + Public Property Certificate() As CertificateType() Get Return Me.certificateField @@ -22380,9 +22380,9 @@ Namespace Peppol.BISBilling30Invoice Me.certificateField = value End Set End Property - + ''' - _ + Public Property Dimension() As DimensionType() Get Return Me.dimensionField @@ -22392,30 +22392,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemIdentificationType - + Private idField As IDType - + Private extendedIDField As ExtendedIDType - + Private barcodeSymbologyIDField As BarcodeSymbologyIDType - + Private physicalAttributeField() As PhysicalAttributeType - + Private measurementDimensionField() As DimensionType - + Private issuerPartyField As PartyType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -22424,9 +22424,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ExtendedID() As ExtendedIDType Get Return Me.extendedIDField @@ -22435,9 +22435,9 @@ Namespace Peppol.BISBilling30Invoice Me.extendedIDField = value End Set End Property - + ''' - _ + Public Property BarcodeSymbologyID() As BarcodeSymbologyIDType Get Return Me.barcodeSymbologyIDField @@ -22446,9 +22446,9 @@ Namespace Peppol.BISBilling30Invoice Me.barcodeSymbologyIDField = value End Set End Property - + ''' - _ + Public Property PhysicalAttribute() As PhysicalAttributeType() Get Return Me.physicalAttributeField @@ -22457,9 +22457,9 @@ Namespace Peppol.BISBilling30Invoice Me.physicalAttributeField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -22468,7 +22468,7 @@ Namespace Peppol.BISBilling30Invoice Me.measurementDimensionField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -22479,26 +22479,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PhysicalAttributeType - + Private attributeIDField As AttributeIDType - + Private positionCodeField As PositionCodeType - + Private descriptionCodeField As DescriptionCodeType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property AttributeID() As AttributeIDType Get Return Me.attributeIDField @@ -22507,9 +22507,9 @@ Namespace Peppol.BISBilling30Invoice Me.attributeIDField = value End Set End Property - + ''' - _ + Public Property PositionCode() As PositionCodeType Get Return Me.positionCodeField @@ -22518,9 +22518,9 @@ Namespace Peppol.BISBilling30Invoice Me.positionCodeField = value End Set End Property - + ''' - _ + Public Property DescriptionCode() As DescriptionCodeType Get Return Me.descriptionCodeField @@ -22529,9 +22529,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -22541,26 +22541,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CommodityClassificationType - + Private natureCodeField As NatureCodeType - + Private cargoTypeCodeField As CargoTypeCodeType - + Private commodityCodeField As CommodityCodeType - + Private itemClassificationCodeField As ItemClassificationCodeType - + ''' - _ + Public Property NatureCode() As NatureCodeType Get Return Me.natureCodeField @@ -22569,9 +22569,9 @@ Namespace Peppol.BISBilling30Invoice Me.natureCodeField = value End Set End Property - + ''' - _ + Public Property CargoTypeCode() As CargoTypeCodeType Get Return Me.cargoTypeCodeField @@ -22580,9 +22580,9 @@ Namespace Peppol.BISBilling30Invoice Me.cargoTypeCodeField = value End Set End Property - + ''' - _ + Public Property CommodityCode() As CommodityCodeType Get Return Me.commodityCodeField @@ -22591,9 +22591,9 @@ Namespace Peppol.BISBilling30Invoice Me.commodityCodeField = value End Set End Property - + ''' - _ + Public Property ItemClassificationCode() As ItemClassificationCodeType Get Return Me.itemClassificationCodeField @@ -22603,26 +22603,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransactionConditionsType - + Private idField As IDType - + Private actionCodeField As ActionCodeType - + Private descriptionField() As DescriptionType - + Private documentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -22631,9 +22631,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ActionCode() As ActionCodeType Get Return Me.actionCodeField @@ -22642,9 +22642,9 @@ Namespace Peppol.BISBilling30Invoice Me.actionCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -22653,9 +22653,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -22665,64 +22665,64 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class HazardousItemType - + Private idField As IDType - + Private placardNotationField As PlacardNotationType - + Private placardEndorsementField As PlacardEndorsementType - + Private additionalInformationField() As AdditionalInformationType - + Private uNDGCodeField As UNDGCodeType - + Private emergencyProceduresCodeField As EmergencyProceduresCodeType - + Private medicalFirstAidGuideCodeField As MedicalFirstAidGuideCodeType - + Private technicalNameField As TechnicalNameType - + Private categoryNameField As CategoryNameType - + Private hazardousCategoryCodeField As HazardousCategoryCodeType - + Private upperOrangeHazardPlacardIDField As UpperOrangeHazardPlacardIDType - + Private lowerOrangeHazardPlacardIDField As LowerOrangeHazardPlacardIDType - + Private markingIDField As MarkingIDType - + Private hazardClassIDField As HazardClassIDType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private quantityField As QuantityType2 - + Private contactPartyField As PartyType - + Private secondaryHazardField() As SecondaryHazardType - + Private hazardousGoodsTransitField() As HazardousGoodsTransitType - + Private emergencyTemperatureField As TemperatureType - + Private flashpointTemperatureField As TemperatureType - + Private additionalTemperatureField() As TemperatureType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -22731,9 +22731,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property PlacardNotation() As PlacardNotationType Get Return Me.placardNotationField @@ -22742,9 +22742,9 @@ Namespace Peppol.BISBilling30Invoice Me.placardNotationField = value End Set End Property - + ''' - _ + Public Property PlacardEndorsement() As PlacardEndorsementType Get Return Me.placardEndorsementField @@ -22753,9 +22753,9 @@ Namespace Peppol.BISBilling30Invoice Me.placardEndorsementField = value End Set End Property - + ''' - _ + Public Property AdditionalInformation() As AdditionalInformationType() Get Return Me.additionalInformationField @@ -22764,9 +22764,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalInformationField = value End Set End Property - + ''' - _ + Public Property UNDGCode() As UNDGCodeType Get Return Me.uNDGCodeField @@ -22775,9 +22775,9 @@ Namespace Peppol.BISBilling30Invoice Me.uNDGCodeField = value End Set End Property - + ''' - _ + Public Property EmergencyProceduresCode() As EmergencyProceduresCodeType Get Return Me.emergencyProceduresCodeField @@ -22786,9 +22786,9 @@ Namespace Peppol.BISBilling30Invoice Me.emergencyProceduresCodeField = value End Set End Property - + ''' - _ + Public Property MedicalFirstAidGuideCode() As MedicalFirstAidGuideCodeType Get Return Me.medicalFirstAidGuideCodeField @@ -22797,9 +22797,9 @@ Namespace Peppol.BISBilling30Invoice Me.medicalFirstAidGuideCodeField = value End Set End Property - + ''' - _ + Public Property TechnicalName() As TechnicalNameType Get Return Me.technicalNameField @@ -22808,9 +22808,9 @@ Namespace Peppol.BISBilling30Invoice Me.technicalNameField = value End Set End Property - + ''' - _ + Public Property CategoryName() As CategoryNameType Get Return Me.categoryNameField @@ -22819,9 +22819,9 @@ Namespace Peppol.BISBilling30Invoice Me.categoryNameField = value End Set End Property - + ''' - _ + Public Property HazardousCategoryCode() As HazardousCategoryCodeType Get Return Me.hazardousCategoryCodeField @@ -22830,9 +22830,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousCategoryCodeField = value End Set End Property - + ''' - _ + Public Property UpperOrangeHazardPlacardID() As UpperOrangeHazardPlacardIDType Get Return Me.upperOrangeHazardPlacardIDField @@ -22841,9 +22841,9 @@ Namespace Peppol.BISBilling30Invoice Me.upperOrangeHazardPlacardIDField = value End Set End Property - + ''' - _ + Public Property LowerOrangeHazardPlacardID() As LowerOrangeHazardPlacardIDType Get Return Me.lowerOrangeHazardPlacardIDField @@ -22852,9 +22852,9 @@ Namespace Peppol.BISBilling30Invoice Me.lowerOrangeHazardPlacardIDField = value End Set End Property - + ''' - _ + Public Property MarkingID() As MarkingIDType Get Return Me.markingIDField @@ -22863,9 +22863,9 @@ Namespace Peppol.BISBilling30Invoice Me.markingIDField = value End Set End Property - + ''' - _ + Public Property HazardClassID() As HazardClassIDType Get Return Me.hazardClassIDField @@ -22874,9 +22874,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardClassIDField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -22885,9 +22885,9 @@ Namespace Peppol.BISBilling30Invoice Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -22896,9 +22896,9 @@ Namespace Peppol.BISBilling30Invoice Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -22907,7 +22907,7 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' Public Property ContactParty() As PartyType Get @@ -22917,9 +22917,9 @@ Namespace Peppol.BISBilling30Invoice Me.contactPartyField = value End Set End Property - + ''' - _ + Public Property SecondaryHazard() As SecondaryHazardType() Get Return Me.secondaryHazardField @@ -22928,9 +22928,9 @@ Namespace Peppol.BISBilling30Invoice Me.secondaryHazardField = value End Set End Property - + ''' - _ + Public Property HazardousGoodsTransit() As HazardousGoodsTransitType() Get Return Me.hazardousGoodsTransitField @@ -22939,7 +22939,7 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousGoodsTransitField = value End Set End Property - + ''' Public Property EmergencyTemperature() As TemperatureType Get @@ -22949,7 +22949,7 @@ Namespace Peppol.BISBilling30Invoice Me.emergencyTemperatureField = value End Set End Property - + ''' Public Property FlashpointTemperature() As TemperatureType Get @@ -22959,9 +22959,9 @@ Namespace Peppol.BISBilling30Invoice Me.flashpointTemperatureField = value End Set End Property - + ''' - _ + Public Property AdditionalTemperature() As TemperatureType() Get Return Me.additionalTemperatureField @@ -22971,28 +22971,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SecondaryHazardType - + Private idField As IDType - + Private placardNotationField As PlacardNotationType - + Private placardEndorsementField As PlacardEndorsementType - + Private emergencyProceduresCodeField As EmergencyProceduresCodeType - + Private extensionField() As ExtensionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23001,9 +23001,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property PlacardNotation() As PlacardNotationType Get Return Me.placardNotationField @@ -23012,9 +23012,9 @@ Namespace Peppol.BISBilling30Invoice Me.placardNotationField = value End Set End Property - + ''' - _ + Public Property PlacardEndorsement() As PlacardEndorsementType Get Return Me.placardEndorsementField @@ -23023,9 +23023,9 @@ Namespace Peppol.BISBilling30Invoice Me.placardEndorsementField = value End Set End Property - + ''' - _ + Public Property EmergencyProceduresCode() As EmergencyProceduresCodeType Get Return Me.emergencyProceduresCodeField @@ -23034,9 +23034,9 @@ Namespace Peppol.BISBilling30Invoice Me.emergencyProceduresCodeField = value End Set End Property - + ''' - _ + Public Property Extension() As ExtensionType() Get Return Me.extensionField @@ -23046,44 +23046,44 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemPropertyType - + Private idField As IDType - + Private nameField As NameType1 - + Private nameCodeField As NameCodeType - + Private testMethodField As TestMethodType - + Private valueField As ValueType - + Private valueQuantityField As ValueQuantityType - + Private valueQualifierField() As ValueQualifierType - + Private importanceCodeField As ImportanceCodeType - + Private listValueField() As ListValueType - + Private usabilityPeriodField As PeriodType - + Private itemPropertyGroupField() As ItemPropertyGroupType - + Private rangeDimensionField As DimensionType - + Private itemPropertyRangeField As ItemPropertyRangeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23092,9 +23092,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -23103,9 +23103,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property NameCode() As NameCodeType Get Return Me.nameCodeField @@ -23114,9 +23114,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameCodeField = value End Set End Property - + ''' - _ + Public Property TestMethod() As TestMethodType Get Return Me.testMethodField @@ -23125,9 +23125,9 @@ Namespace Peppol.BISBilling30Invoice Me.testMethodField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -23136,9 +23136,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueField = value End Set End Property - + ''' - _ + Public Property ValueQuantity() As ValueQuantityType Get Return Me.valueQuantityField @@ -23147,9 +23147,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueQuantityField = value End Set End Property - + ''' - _ + Public Property ValueQualifier() As ValueQualifierType() Get Return Me.valueQualifierField @@ -23158,9 +23158,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueQualifierField = value End Set End Property - + ''' - _ + Public Property ImportanceCode() As ImportanceCodeType Get Return Me.importanceCodeField @@ -23169,9 +23169,9 @@ Namespace Peppol.BISBilling30Invoice Me.importanceCodeField = value End Set End Property - + ''' - _ + Public Property ListValue() As ListValueType() Get Return Me.listValueField @@ -23180,7 +23180,7 @@ Namespace Peppol.BISBilling30Invoice Me.listValueField = value End Set End Property - + ''' Public Property UsabilityPeriod() As PeriodType Get @@ -23190,9 +23190,9 @@ Namespace Peppol.BISBilling30Invoice Me.usabilityPeriodField = value End Set End Property - + ''' - _ + Public Property ItemPropertyGroup() As ItemPropertyGroupType() Get Return Me.itemPropertyGroupField @@ -23201,7 +23201,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemPropertyGroupField = value End Set End Property - + ''' Public Property RangeDimension() As DimensionType Get @@ -23211,7 +23211,7 @@ Namespace Peppol.BISBilling30Invoice Me.rangeDimensionField = value End Set End Property - + ''' Public Property ItemPropertyRange() As ItemPropertyRangeType Get @@ -23222,24 +23222,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemPropertyGroupType - + Private idField As IDType - + Private nameField As NameType1 - + Private importanceCodeField As ImportanceCodeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23248,9 +23248,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -23259,9 +23259,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property ImportanceCode() As ImportanceCodeType Get Return Me.importanceCodeField @@ -23271,22 +23271,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemPropertyRangeType - + Private minimumValueField As MinimumValueType - + Private maximumValueField As MaximumValueType - + ''' - _ + Public Property MinimumValue() As MinimumValueType Get Return Me.minimumValueField @@ -23295,9 +23295,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumValueField = value End Set End Property - + ''' - _ + Public Property MaximumValue() As MaximumValueType Get Return Me.maximumValueField @@ -23307,34 +23307,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemInstanceType - + Private productTraceIDField As ProductTraceIDType - + Private manufactureDateField As ManufactureDateType - + Private manufactureTimeField As ManufactureTimeType - + Private bestBeforeDateField As BestBeforeDateType - + Private registrationIDField As RegistrationIDType - + Private serialIDField As SerialIDType - + Private additionalItemPropertyField() As ItemPropertyType - + Private lotIdentificationField As LotIdentificationType - + ''' - _ + Public Property ProductTraceID() As ProductTraceIDType Get Return Me.productTraceIDField @@ -23343,9 +23343,9 @@ Namespace Peppol.BISBilling30Invoice Me.productTraceIDField = value End Set End Property - + ''' - _ + Public Property ManufactureDate() As ManufactureDateType Get Return Me.manufactureDateField @@ -23354,9 +23354,9 @@ Namespace Peppol.BISBilling30Invoice Me.manufactureDateField = value End Set End Property - + ''' - _ + Public Property ManufactureTime() As ManufactureTimeType Get Return Me.manufactureTimeField @@ -23365,9 +23365,9 @@ Namespace Peppol.BISBilling30Invoice Me.manufactureTimeField = value End Set End Property - + ''' - _ + Public Property BestBeforeDate() As BestBeforeDateType Get Return Me.bestBeforeDateField @@ -23376,9 +23376,9 @@ Namespace Peppol.BISBilling30Invoice Me.bestBeforeDateField = value End Set End Property - + ''' - _ + Public Property RegistrationID() As RegistrationIDType Get Return Me.registrationIDField @@ -23387,9 +23387,9 @@ Namespace Peppol.BISBilling30Invoice Me.registrationIDField = value End Set End Property - + ''' - _ + Public Property SerialID() As SerialIDType Get Return Me.serialIDField @@ -23398,9 +23398,9 @@ Namespace Peppol.BISBilling30Invoice Me.serialIDField = value End Set End Property - + ''' - _ + Public Property AdditionalItemProperty() As ItemPropertyType() Get Return Me.additionalItemPropertyField @@ -23409,7 +23409,7 @@ Namespace Peppol.BISBilling30Invoice Me.additionalItemPropertyField = value End Set End Property - + ''' Public Property LotIdentification() As LotIdentificationType Get @@ -23420,24 +23420,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LotIdentificationType - + Private lotNumberIDField As LotNumberIDType - + Private expiryDateField As ExpiryDateType - + Private additionalItemPropertyField() As ItemPropertyType - + ''' - _ + Public Property LotNumberID() As LotNumberIDType Get Return Me.lotNumberIDField @@ -23446,9 +23446,9 @@ Namespace Peppol.BISBilling30Invoice Me.lotNumberIDField = value End Set End Property - + ''' - _ + Public Property ExpiryDate() As ExpiryDateType Get Return Me.expiryDateField @@ -23457,9 +23457,9 @@ Namespace Peppol.BISBilling30Invoice Me.expiryDateField = value End Set End Property - + ''' - _ + Public Property AdditionalItemProperty() As ItemPropertyType() Get Return Me.additionalItemPropertyField @@ -23469,32 +23469,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CertificateType - + Private idField As IDType - + Private certificateTypeCodeField As CertificateTypeCodeType - + Private certificateType1Field As CertificateTypeType - + Private remarksField() As RemarksType - + Private issuerPartyField As PartyType - + Private documentReferenceField() As DocumentReferenceType - + Private signatureField() As SignatureType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23503,9 +23503,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property CertificateTypeCode() As CertificateTypeCodeType Get Return Me.certificateTypeCodeField @@ -23514,9 +23514,9 @@ Namespace Peppol.BISBilling30Invoice Me.certificateTypeCodeField = value End Set End Property - + ''' - _ + Public Property CertificateType1() As CertificateTypeType Get Return Me.certificateType1Field @@ -23525,9 +23525,9 @@ Namespace Peppol.BISBilling30Invoice Me.certificateType1Field = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -23536,7 +23536,7 @@ Namespace Peppol.BISBilling30Invoice Me.remarksField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -23546,9 +23546,9 @@ Namespace Peppol.BISBilling30Invoice Me.issuerPartyField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -23557,9 +23557,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -23569,38 +23569,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SignatureType - + Private idField As IDType - + Private noteField() As NoteType - + Private validationDateField As ValidationDateType - + Private validationTimeField As ValidationTimeType - + Private validatorIDField As ValidatorIDType - + Private canonicalizationMethodField As CanonicalizationMethodType - + Private signatureMethodField As SignatureMethodType - + Private signatoryPartyField As PartyType - + Private digitalSignatureAttachmentField As AttachmentType - + Private originalDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23609,9 +23609,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -23620,9 +23620,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property ValidationDate() As ValidationDateType Get Return Me.validationDateField @@ -23631,9 +23631,9 @@ Namespace Peppol.BISBilling30Invoice Me.validationDateField = value End Set End Property - + ''' - _ + Public Property ValidationTime() As ValidationTimeType Get Return Me.validationTimeField @@ -23642,9 +23642,9 @@ Namespace Peppol.BISBilling30Invoice Me.validationTimeField = value End Set End Property - + ''' - _ + Public Property ValidatorID() As ValidatorIDType Get Return Me.validatorIDField @@ -23653,9 +23653,9 @@ Namespace Peppol.BISBilling30Invoice Me.validatorIDField = value End Set End Property - + ''' - _ + Public Property CanonicalizationMethod() As CanonicalizationMethodType Get Return Me.canonicalizationMethodField @@ -23664,9 +23664,9 @@ Namespace Peppol.BISBilling30Invoice Me.canonicalizationMethodField = value End Set End Property - + ''' - _ + Public Property SignatureMethod() As SignatureMethodType Get Return Me.signatureMethodField @@ -23675,7 +23675,7 @@ Namespace Peppol.BISBilling30Invoice Me.signatureMethodField = value End Set End Property - + ''' Public Property SignatoryParty() As PartyType Get @@ -23685,7 +23685,7 @@ Namespace Peppol.BISBilling30Invoice Me.signatoryPartyField = value End Set End Property - + ''' Public Property DigitalSignatureAttachment() As AttachmentType Get @@ -23695,7 +23695,7 @@ Namespace Peppol.BISBilling30Invoice Me.digitalSignatureAttachmentField = value End Set End Property - + ''' Public Property OriginalDocumentReference() As DocumentReferenceType Get @@ -23706,48 +23706,48 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PackageType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private returnableMaterialIndicatorField As ReturnableMaterialIndicatorType - + Private packageLevelCodeField As PackageLevelCodeType - + Private packagingTypeCodeField As PackagingTypeCodeType - + Private packingMaterialField() As PackingMaterialType - + Private traceIDField As TraceIDType - + Private containedPackageField() As PackageType - + Private containingTransportEquipmentField As TransportEquipmentType - + Private goodsItemField() As GoodsItemType - + Private measurementDimensionField() As DimensionType - + Private deliveryUnitField() As DeliveryUnitType - + Private deliveryField As DeliveryType - + Private pickupField As PickupType - + Private despatchField As DespatchType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -23756,9 +23756,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -23767,9 +23767,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property ReturnableMaterialIndicator() As ReturnableMaterialIndicatorType Get Return Me.returnableMaterialIndicatorField @@ -23778,9 +23778,9 @@ Namespace Peppol.BISBilling30Invoice Me.returnableMaterialIndicatorField = value End Set End Property - + ''' - _ + Public Property PackageLevelCode() As PackageLevelCodeType Get Return Me.packageLevelCodeField @@ -23789,9 +23789,9 @@ Namespace Peppol.BISBilling30Invoice Me.packageLevelCodeField = value End Set End Property - + ''' - _ + Public Property PackagingTypeCode() As PackagingTypeCodeType Get Return Me.packagingTypeCodeField @@ -23800,9 +23800,9 @@ Namespace Peppol.BISBilling30Invoice Me.packagingTypeCodeField = value End Set End Property - + ''' - _ + Public Property PackingMaterial() As PackingMaterialType() Get Return Me.packingMaterialField @@ -23811,9 +23811,9 @@ Namespace Peppol.BISBilling30Invoice Me.packingMaterialField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -23822,9 +23822,9 @@ Namespace Peppol.BISBilling30Invoice Me.traceIDField = value End Set End Property - + ''' - _ + Public Property ContainedPackage() As PackageType() Get Return Me.containedPackageField @@ -23833,7 +23833,7 @@ Namespace Peppol.BISBilling30Invoice Me.containedPackageField = value End Set End Property - + ''' Public Property ContainingTransportEquipment() As TransportEquipmentType Get @@ -23843,9 +23843,9 @@ Namespace Peppol.BISBilling30Invoice Me.containingTransportEquipmentField = value End Set End Property - + ''' - _ + Public Property GoodsItem() As GoodsItemType() Get Return Me.goodsItemField @@ -23854,9 +23854,9 @@ Namespace Peppol.BISBilling30Invoice Me.goodsItemField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -23865,9 +23865,9 @@ Namespace Peppol.BISBilling30Invoice Me.measurementDimensionField = value End Set End Property - + ''' - _ + Public Property DeliveryUnit() As DeliveryUnitType() Get Return Me.deliveryUnitField @@ -23876,7 +23876,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryUnitField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -23886,7 +23886,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' Public Property Pickup() As PickupType Get @@ -23896,7 +23896,7 @@ Namespace Peppol.BISBilling30Invoice Me.pickupField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -23907,98 +23907,98 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class GoodsItemType - + Private idField As IDType - + Private sequenceNumberIDField As SequenceNumberIDType - + Private descriptionField() As DescriptionType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private declaredCustomsValueAmountField As DeclaredCustomsValueAmountType - + Private declaredForCarriageValueAmountField As DeclaredForCarriageValueAmountType - + Private declaredStatisticsValueAmountField As DeclaredStatisticsValueAmountType - + Private freeOnBoardValueAmountField As FreeOnBoardValueAmountType - + Private insuranceValueAmountField As InsuranceValueAmountType - + Private valueAmountField As ValueAmountType - + Private grossWeightMeasureField As GrossWeightMeasureType - + Private netWeightMeasureField As NetWeightMeasureType - + Private netNetWeightMeasureField As NetNetWeightMeasureType - + Private chargeableWeightMeasureField As ChargeableWeightMeasureType - + Private grossVolumeMeasureField As GrossVolumeMeasureType - + Private netVolumeMeasureField As NetVolumeMeasureType - + Private quantityField As QuantityType2 - + Private preferenceCriterionCodeField As PreferenceCriterionCodeType - + Private requiredCustomsIDField As RequiredCustomsIDType - + Private customsStatusCodeField As CustomsStatusCodeType - + Private customsTariffQuantityField As CustomsTariffQuantityType - + Private customsImportClassifiedIndicatorField As CustomsImportClassifiedIndicatorType - + Private chargeableQuantityField As ChargeableQuantityType - + Private returnableQuantityField As ReturnableQuantityType - + Private traceIDField As TraceIDType - + Private itemField() As ItemType - + Private goodsItemContainerField() As GoodsItemContainerType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private invoiceLineField() As InvoiceLineType - + Private temperatureField() As TemperatureType - + Private containedGoodsItemField() As GoodsItemType - + Private originAddressField As AddressType - + Private deliveryField As DeliveryType - + Private pickupField As PickupType - + Private despatchField As DespatchType - + Private measurementDimensionField() As DimensionType - + Private containingPackageField() As PackageType - + Private shipmentDocumentReferenceField As DocumentReferenceType - + Private minimumTemperatureField As TemperatureType - + Private maximumTemperatureField As TemperatureType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -24007,9 +24007,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SequenceNumberID() As SequenceNumberIDType Get Return Me.sequenceNumberIDField @@ -24018,9 +24018,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceNumberIDField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -24029,9 +24029,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -24040,9 +24040,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property DeclaredCustomsValueAmount() As DeclaredCustomsValueAmountType Get Return Me.declaredCustomsValueAmountField @@ -24051,9 +24051,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredCustomsValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredForCarriageValueAmount() As DeclaredForCarriageValueAmountType Get Return Me.declaredForCarriageValueAmountField @@ -24062,9 +24062,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredForCarriageValueAmountField = value End Set End Property - + ''' - _ + Public Property DeclaredStatisticsValueAmount() As DeclaredStatisticsValueAmountType Get Return Me.declaredStatisticsValueAmountField @@ -24073,9 +24073,9 @@ Namespace Peppol.BISBilling30Invoice Me.declaredStatisticsValueAmountField = value End Set End Property - + ''' - _ + Public Property FreeOnBoardValueAmount() As FreeOnBoardValueAmountType Get Return Me.freeOnBoardValueAmountField @@ -24084,9 +24084,9 @@ Namespace Peppol.BISBilling30Invoice Me.freeOnBoardValueAmountField = value End Set End Property - + ''' - _ + Public Property InsuranceValueAmount() As InsuranceValueAmountType Get Return Me.insuranceValueAmountField @@ -24095,9 +24095,9 @@ Namespace Peppol.BISBilling30Invoice Me.insuranceValueAmountField = value End Set End Property - + ''' - _ + Public Property ValueAmount() As ValueAmountType Get Return Me.valueAmountField @@ -24106,9 +24106,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueAmountField = value End Set End Property - + ''' - _ + Public Property GrossWeightMeasure() As GrossWeightMeasureType Get Return Me.grossWeightMeasureField @@ -24117,9 +24117,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetWeightMeasure() As NetWeightMeasureType Get Return Me.netWeightMeasureField @@ -24128,9 +24128,9 @@ Namespace Peppol.BISBilling30Invoice Me.netWeightMeasureField = value End Set End Property - + ''' - _ + Public Property NetNetWeightMeasure() As NetNetWeightMeasureType Get Return Me.netNetWeightMeasureField @@ -24139,9 +24139,9 @@ Namespace Peppol.BISBilling30Invoice Me.netNetWeightMeasureField = value End Set End Property - + ''' - _ + Public Property ChargeableWeightMeasure() As ChargeableWeightMeasureType Get Return Me.chargeableWeightMeasureField @@ -24150,9 +24150,9 @@ Namespace Peppol.BISBilling30Invoice Me.chargeableWeightMeasureField = value End Set End Property - + ''' - _ + Public Property GrossVolumeMeasure() As GrossVolumeMeasureType Get Return Me.grossVolumeMeasureField @@ -24161,9 +24161,9 @@ Namespace Peppol.BISBilling30Invoice Me.grossVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property NetVolumeMeasure() As NetVolumeMeasureType Get Return Me.netVolumeMeasureField @@ -24172,9 +24172,9 @@ Namespace Peppol.BISBilling30Invoice Me.netVolumeMeasureField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -24183,9 +24183,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property PreferenceCriterionCode() As PreferenceCriterionCodeType Get Return Me.preferenceCriterionCodeField @@ -24194,9 +24194,9 @@ Namespace Peppol.BISBilling30Invoice Me.preferenceCriterionCodeField = value End Set End Property - + ''' - _ + Public Property RequiredCustomsID() As RequiredCustomsIDType Get Return Me.requiredCustomsIDField @@ -24205,9 +24205,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredCustomsIDField = value End Set End Property - + ''' - _ + Public Property CustomsStatusCode() As CustomsStatusCodeType Get Return Me.customsStatusCodeField @@ -24216,9 +24216,9 @@ Namespace Peppol.BISBilling30Invoice Me.customsStatusCodeField = value End Set End Property - + ''' - _ + Public Property CustomsTariffQuantity() As CustomsTariffQuantityType Get Return Me.customsTariffQuantityField @@ -24227,9 +24227,9 @@ Namespace Peppol.BISBilling30Invoice Me.customsTariffQuantityField = value End Set End Property - + ''' - _ + Public Property CustomsImportClassifiedIndicator() As CustomsImportClassifiedIndicatorType Get Return Me.customsImportClassifiedIndicatorField @@ -24238,9 +24238,9 @@ Namespace Peppol.BISBilling30Invoice Me.customsImportClassifiedIndicatorField = value End Set End Property - + ''' - _ + Public Property ChargeableQuantity() As ChargeableQuantityType Get Return Me.chargeableQuantityField @@ -24249,9 +24249,9 @@ Namespace Peppol.BISBilling30Invoice Me.chargeableQuantityField = value End Set End Property - + ''' - _ + Public Property ReturnableQuantity() As ReturnableQuantityType Get Return Me.returnableQuantityField @@ -24260,9 +24260,9 @@ Namespace Peppol.BISBilling30Invoice Me.returnableQuantityField = value End Set End Property - + ''' - _ + Public Property TraceID() As TraceIDType Get Return Me.traceIDField @@ -24271,9 +24271,9 @@ Namespace Peppol.BISBilling30Invoice Me.traceIDField = value End Set End Property - + ''' - _ + Public Property Item() As ItemType() Get Return Me.itemField @@ -24282,9 +24282,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property GoodsItemContainer() As GoodsItemContainerType() Get Return Me.goodsItemContainerField @@ -24293,9 +24293,9 @@ Namespace Peppol.BISBilling30Invoice Me.goodsItemContainerField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -24304,9 +24304,9 @@ Namespace Peppol.BISBilling30Invoice Me.freightAllowanceChargeField = value End Set End Property - + ''' - _ + Public Property InvoiceLine() As InvoiceLineType() Get Return Me.invoiceLineField @@ -24315,9 +24315,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoiceLineField = value End Set End Property - + ''' - _ + Public Property Temperature() As TemperatureType() Get Return Me.temperatureField @@ -24326,9 +24326,9 @@ Namespace Peppol.BISBilling30Invoice Me.temperatureField = value End Set End Property - + ''' - _ + Public Property ContainedGoodsItem() As GoodsItemType() Get Return Me.containedGoodsItemField @@ -24337,7 +24337,7 @@ Namespace Peppol.BISBilling30Invoice Me.containedGoodsItemField = value End Set End Property - + ''' Public Property OriginAddress() As AddressType Get @@ -24347,7 +24347,7 @@ Namespace Peppol.BISBilling30Invoice Me.originAddressField = value End Set End Property - + ''' Public Property Delivery() As DeliveryType Get @@ -24357,7 +24357,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' Public Property Pickup() As PickupType Get @@ -24367,7 +24367,7 @@ Namespace Peppol.BISBilling30Invoice Me.pickupField = value End Set End Property - + ''' Public Property Despatch() As DespatchType Get @@ -24377,9 +24377,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchField = value End Set End Property - + ''' - _ + Public Property MeasurementDimension() As DimensionType() Get Return Me.measurementDimensionField @@ -24388,9 +24388,9 @@ Namespace Peppol.BISBilling30Invoice Me.measurementDimensionField = value End Set End Property - + ''' - _ + Public Property ContainingPackage() As PackageType() Get Return Me.containingPackageField @@ -24399,7 +24399,7 @@ Namespace Peppol.BISBilling30Invoice Me.containingPackageField = value End Set End Property - + ''' Public Property ShipmentDocumentReference() As DocumentReferenceType Get @@ -24409,7 +24409,7 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentDocumentReferenceField = value End Set End Property - + ''' Public Property MinimumTemperature() As TemperatureType Get @@ -24419,7 +24419,7 @@ Namespace Peppol.BISBilling30Invoice Me.minimumTemperatureField = value End Set End Property - + ''' Public Property MaximumTemperature() As TemperatureType Get @@ -24430,24 +24430,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class GoodsItemContainerType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private transportEquipmentField() As TransportEquipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -24456,9 +24456,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -24467,9 +24467,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property TransportEquipment() As TransportEquipmentType() Get Return Me.transportEquipmentField @@ -24479,74 +24479,74 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class InvoiceLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private invoicedQuantityField As InvoicedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxPointDateField As TaxPointDateType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private freeOfChargeIndicatorField As FreeOfChargeIndicatorType - + Private invoicePeriodField() As PeriodType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private despatchLineReferenceField() As LineReferenceType - + Private receiptLineReferenceField() As LineReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private pricingReferenceField As PricingReferenceType - + Private originatorPartyField As PartyType - + Private deliveryField() As DeliveryType - + Private paymentTermsField() As PaymentTermsType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private withholdingTaxTotalField() As TaxTotalType - + Private itemField As ItemType - + Private priceField As PriceType - + Private deliveryTermsField As DeliveryTermsType - + Private subInvoiceLineField() As InvoiceLineType - + Private itemPriceExtensionField As PriceExtensionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -24555,9 +24555,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -24566,9 +24566,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -24577,9 +24577,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property InvoicedQuantity() As InvoicedQuantityType Get Return Me.invoicedQuantityField @@ -24588,9 +24588,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -24599,9 +24599,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -24610,9 +24610,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -24621,9 +24621,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -24632,9 +24632,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -24643,9 +24643,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property FreeOfChargeIndicator() As FreeOfChargeIndicatorType Get Return Me.freeOfChargeIndicatorField @@ -24654,9 +24654,9 @@ Namespace Peppol.BISBilling30Invoice Me.freeOfChargeIndicatorField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -24665,9 +24665,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -24676,9 +24676,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -24687,9 +24687,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptLineReference() As LineReferenceType() Get Return Me.receiptLineReferenceField @@ -24698,9 +24698,9 @@ Namespace Peppol.BISBilling30Invoice Me.receiptLineReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -24709,9 +24709,9 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -24720,7 +24720,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -24730,7 +24730,7 @@ Namespace Peppol.BISBilling30Invoice Me.pricingReferenceField = value End Set End Property - + ''' Public Property OriginatorParty() As PartyType Get @@ -24740,9 +24740,9 @@ Namespace Peppol.BISBilling30Invoice Me.originatorPartyField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -24751,9 +24751,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -24762,9 +24762,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -24773,9 +24773,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -24784,9 +24784,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property WithholdingTaxTotal() As TaxTotalType() Get Return Me.withholdingTaxTotalField @@ -24795,7 +24795,7 @@ Namespace Peppol.BISBilling30Invoice Me.withholdingTaxTotalField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -24805,7 +24805,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -24815,7 +24815,7 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' Public Property DeliveryTerms() As DeliveryTermsType Get @@ -24825,9 +24825,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' - _ + Public Property SubInvoiceLine() As InvoiceLineType() Get Return Me.subInvoiceLineField @@ -24836,7 +24836,7 @@ Namespace Peppol.BISBilling30Invoice Me.subInvoiceLineField = value End Set End Property - + ''' Public Property ItemPriceExtension() As PriceExtensionType Get @@ -24847,26 +24847,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LineReferenceType - + Private lineIDField As LineIDType - + Private uUIDField As UUIDType - + Private lineStatusCodeField As LineStatusCodeType - + Private documentReferenceField As DocumentReferenceType - + ''' - _ + Public Property LineID() As LineIDType Get Return Me.lineIDField @@ -24875,9 +24875,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineIDField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -24886,9 +24886,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -24897,7 +24897,7 @@ Namespace Peppol.BISBilling30Invoice Me.lineStatusCodeField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -24908,32 +24908,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class BillingReferenceType - + Private invoiceDocumentReferenceField As DocumentReferenceType - + Private selfBilledInvoiceDocumentReferenceField As DocumentReferenceType - + Private creditNoteDocumentReferenceField As DocumentReferenceType - + Private selfBilledCreditNoteDocumentReferenceField As DocumentReferenceType - + Private debitNoteDocumentReferenceField As DocumentReferenceType - + Private reminderDocumentReferenceField As DocumentReferenceType - + Private additionalDocumentReferenceField As DocumentReferenceType - + Private billingReferenceLineField() As BillingReferenceLineType - + ''' Public Property InvoiceDocumentReference() As DocumentReferenceType Get @@ -24943,7 +24943,7 @@ Namespace Peppol.BISBilling30Invoice Me.invoiceDocumentReferenceField = value End Set End Property - + ''' Public Property SelfBilledInvoiceDocumentReference() As DocumentReferenceType Get @@ -24953,7 +24953,7 @@ Namespace Peppol.BISBilling30Invoice Me.selfBilledInvoiceDocumentReferenceField = value End Set End Property - + ''' Public Property CreditNoteDocumentReference() As DocumentReferenceType Get @@ -24963,7 +24963,7 @@ Namespace Peppol.BISBilling30Invoice Me.creditNoteDocumentReferenceField = value End Set End Property - + ''' Public Property SelfBilledCreditNoteDocumentReference() As DocumentReferenceType Get @@ -24973,7 +24973,7 @@ Namespace Peppol.BISBilling30Invoice Me.selfBilledCreditNoteDocumentReferenceField = value End Set End Property - + ''' Public Property DebitNoteDocumentReference() As DocumentReferenceType Get @@ -24983,7 +24983,7 @@ Namespace Peppol.BISBilling30Invoice Me.debitNoteDocumentReferenceField = value End Set End Property - + ''' Public Property ReminderDocumentReference() As DocumentReferenceType Get @@ -24993,7 +24993,7 @@ Namespace Peppol.BISBilling30Invoice Me.reminderDocumentReferenceField = value End Set End Property - + ''' Public Property AdditionalDocumentReference() As DocumentReferenceType Get @@ -25003,9 +25003,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReferenceLine() As BillingReferenceLineType() Get Return Me.billingReferenceLineField @@ -25015,24 +25015,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class BillingReferenceLineType - + Private idField As IDType - + Private amountField As AmountType2 - + Private allowanceChargeField() As AllowanceChargeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25041,9 +25041,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -25052,9 +25052,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -25064,20 +25064,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PricingReferenceType - + Private originalItemLocationQuantityField As ItemLocationQuantityType - + Private alternativeConditionPriceField() As PriceType - + ''' Public Property OriginalItemLocationQuantity() As ItemLocationQuantityType Get @@ -25087,9 +25087,9 @@ Namespace Peppol.BISBilling30Invoice Me.originalItemLocationQuantityField = value End Set End Property - + ''' - _ + Public Property AlternativeConditionPrice() As PriceType() Get Return Me.alternativeConditionPriceField @@ -25099,42 +25099,42 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemLocationQuantityType - + Private leadTimeMeasureField As LeadTimeMeasureType - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private hazardousRiskIndicatorField As HazardousRiskIndicatorType - + Private tradingRestrictionsField() As TradingRestrictionsType - + Private applicableTerritoryAddressField() As AddressType - + Private priceField As PriceType - + Private deliveryUnitField() As DeliveryUnitType - + Private applicableTaxCategoryField() As TaxCategoryType - + Private packageField As PackageType - + Private allowanceChargeField() As AllowanceChargeType - + Private dependentPriceReferenceField As DependentPriceReferenceType - + ''' - _ + Public Property LeadTimeMeasure() As LeadTimeMeasureType Get Return Me.leadTimeMeasureField @@ -25143,9 +25143,9 @@ Namespace Peppol.BISBilling30Invoice Me.leadTimeMeasureField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -25154,9 +25154,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -25165,9 +25165,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property HazardousRiskIndicator() As HazardousRiskIndicatorType Get Return Me.hazardousRiskIndicatorField @@ -25176,9 +25176,9 @@ Namespace Peppol.BISBilling30Invoice Me.hazardousRiskIndicatorField = value End Set End Property - + ''' - _ + Public Property TradingRestrictions() As TradingRestrictionsType() Get Return Me.tradingRestrictionsField @@ -25187,9 +25187,9 @@ Namespace Peppol.BISBilling30Invoice Me.tradingRestrictionsField = value End Set End Property - + ''' - _ + Public Property ApplicableTerritoryAddress() As AddressType() Get Return Me.applicableTerritoryAddressField @@ -25198,7 +25198,7 @@ Namespace Peppol.BISBilling30Invoice Me.applicableTerritoryAddressField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -25208,9 +25208,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' - _ + Public Property DeliveryUnit() As DeliveryUnitType() Get Return Me.deliveryUnitField @@ -25219,9 +25219,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryUnitField = value End Set End Property - + ''' - _ + Public Property ApplicableTaxCategory() As TaxCategoryType() Get Return Me.applicableTaxCategoryField @@ -25230,7 +25230,7 @@ Namespace Peppol.BISBilling30Invoice Me.applicableTaxCategoryField = value End Set End Property - + ''' Public Property Package() As PackageType Get @@ -25240,9 +25240,9 @@ Namespace Peppol.BISBilling30Invoice Me.packageField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -25251,7 +25251,7 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' Public Property DependentPriceReference() As DependentPriceReferenceType Get @@ -25262,38 +25262,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PriceType - + Private priceAmountField As PriceAmountType - + Private baseQuantityField As BaseQuantityType - + Private priceChangeReasonField() As PriceChangeReasonType - + Private priceTypeCodeField As PriceTypeCodeType - + Private priceType1Field As PriceTypeType - + Private orderableUnitFactorRateField As OrderableUnitFactorRateType - + Private validityPeriodField() As PeriodType - + Private priceListField As PriceListType - + Private allowanceChargeField() As AllowanceChargeType - + Private pricingExchangeRateField As ExchangeRateType - + ''' - _ + Public Property PriceAmount() As PriceAmountType Get Return Me.priceAmountField @@ -25302,9 +25302,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceAmountField = value End Set End Property - + ''' - _ + Public Property BaseQuantity() As BaseQuantityType Get Return Me.baseQuantityField @@ -25313,9 +25313,9 @@ Namespace Peppol.BISBilling30Invoice Me.baseQuantityField = value End Set End Property - + ''' - _ + Public Property PriceChangeReason() As PriceChangeReasonType() Get Return Me.priceChangeReasonField @@ -25324,9 +25324,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceChangeReasonField = value End Set End Property - + ''' - _ + Public Property PriceTypeCode() As PriceTypeCodeType Get Return Me.priceTypeCodeField @@ -25335,9 +25335,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceTypeCodeField = value End Set End Property - + ''' - _ + Public Property PriceType1() As PriceTypeType Get Return Me.priceType1Field @@ -25346,9 +25346,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceType1Field = value End Set End Property - + ''' - _ + Public Property OrderableUnitFactorRate() As OrderableUnitFactorRateType Get Return Me.orderableUnitFactorRateField @@ -25357,9 +25357,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderableUnitFactorRateField = value End Set End Property - + ''' - _ + Public Property ValidityPeriod() As PeriodType() Get Return Me.validityPeriodField @@ -25368,7 +25368,7 @@ Namespace Peppol.BISBilling30Invoice Me.validityPeriodField = value End Set End Property - + ''' Public Property PriceList() As PriceListType Get @@ -25378,9 +25378,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceListField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -25389,7 +25389,7 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' Public Property PricingExchangeRate() As ExchangeRateType Get @@ -25400,26 +25400,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PriceListType - + Private idField As IDType - + Private statusCodeField As StatusCodeType - + Private validityPeriodField() As PeriodType - + Private previousPriceListField As PriceListType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25428,9 +25428,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property StatusCode() As StatusCodeType Get Return Me.statusCodeField @@ -25439,9 +25439,9 @@ Namespace Peppol.BISBilling30Invoice Me.statusCodeField = value End Set End Property - + ''' - _ + Public Property ValidityPeriod() As PeriodType() Get Return Me.validityPeriodField @@ -25450,7 +25450,7 @@ Namespace Peppol.BISBilling30Invoice Me.validityPeriodField = value End Set End Property - + ''' Public Property PreviousPriceList() As PriceListType Get @@ -25461,36 +25461,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ExchangeRateType - + Private sourceCurrencyCodeField As SourceCurrencyCodeType - + Private sourceCurrencyBaseRateField As SourceCurrencyBaseRateType - + Private targetCurrencyCodeField As TargetCurrencyCodeType - + Private targetCurrencyBaseRateField As TargetCurrencyBaseRateType - + Private exchangeMarketIDField As ExchangeMarketIDType - + Private calculationRateField As CalculationRateType - + Private mathematicOperatorCodeField As MathematicOperatorCodeType - + Private dateField As DateType1 - + Private foreignExchangeContractField As ContractType - + ''' - _ + Public Property SourceCurrencyCode() As SourceCurrencyCodeType Get Return Me.sourceCurrencyCodeField @@ -25499,9 +25499,9 @@ Namespace Peppol.BISBilling30Invoice Me.sourceCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property SourceCurrencyBaseRate() As SourceCurrencyBaseRateType Get Return Me.sourceCurrencyBaseRateField @@ -25510,9 +25510,9 @@ Namespace Peppol.BISBilling30Invoice Me.sourceCurrencyBaseRateField = value End Set End Property - + ''' - _ + Public Property TargetCurrencyCode() As TargetCurrencyCodeType Get Return Me.targetCurrencyCodeField @@ -25521,9 +25521,9 @@ Namespace Peppol.BISBilling30Invoice Me.targetCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property TargetCurrencyBaseRate() As TargetCurrencyBaseRateType Get Return Me.targetCurrencyBaseRateField @@ -25532,9 +25532,9 @@ Namespace Peppol.BISBilling30Invoice Me.targetCurrencyBaseRateField = value End Set End Property - + ''' - _ + Public Property ExchangeMarketID() As ExchangeMarketIDType Get Return Me.exchangeMarketIDField @@ -25543,9 +25543,9 @@ Namespace Peppol.BISBilling30Invoice Me.exchangeMarketIDField = value End Set End Property - + ''' - _ + Public Property CalculationRate() As CalculationRateType Get Return Me.calculationRateField @@ -25554,9 +25554,9 @@ Namespace Peppol.BISBilling30Invoice Me.calculationRateField = value End Set End Property - + ''' - _ + Public Property MathematicOperatorCode() As MathematicOperatorCodeType Get Return Me.mathematicOperatorCodeField @@ -25565,9 +25565,9 @@ Namespace Peppol.BISBilling30Invoice Me.mathematicOperatorCodeField = value End Set End Property - + ''' - _ + Public Property [Date]() As DateType1 Get Return Me.dateField @@ -25576,7 +25576,7 @@ Namespace Peppol.BISBilling30Invoice Me.dateField = value End Set End Property - + ''' Public Property ForeignExchangeContract() As ContractType Get @@ -25587,24 +25587,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DependentPriceReferenceType - + Private percentField As PercentType1 - + Private locationAddressField As AddressType - + Private dependentLineReferenceField As LineReferenceType - + ''' - _ + Public Property Percent() As PercentType1 Get Return Me.percentField @@ -25613,7 +25613,7 @@ Namespace Peppol.BISBilling30Invoice Me.percentField = value End Set End Property - + ''' Public Property LocationAddress() As AddressType Get @@ -25623,7 +25623,7 @@ Namespace Peppol.BISBilling30Invoice Me.locationAddressField = value End Set End Property - + ''' Public Property DependentLineReference() As LineReferenceType Get @@ -25634,56 +25634,56 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PaymentTermsType - + Private idField As IDType - + Private paymentMeansIDField() As PaymentMeansIDType - + Private prepaidPaymentReferenceIDField As PrepaidPaymentReferenceIDType - + Private noteField() As NoteType - + Private referenceEventCodeField As ReferenceEventCodeType - + Private settlementDiscountPercentField As SettlementDiscountPercentType - + Private penaltySurchargePercentField As PenaltySurchargePercentType - + Private paymentPercentField As PaymentPercentType - + Private amountField As AmountType2 - + Private settlementDiscountAmountField As SettlementDiscountAmountType - + Private penaltyAmountField As PenaltyAmountType - + Private paymentTermsDetailsURIField As PaymentTermsDetailsURIType - + Private paymentDueDateField As PaymentDueDateType - + Private installmentDueDateField As InstallmentDueDateType - + Private invoicingPartyReferenceField As InvoicingPartyReferenceType - + Private settlementPeriodField As PeriodType - + Private penaltyPeriodField As PeriodType - + Private exchangeRateField As ExchangeRateType - + Private validityPeriodField As PeriodType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25692,9 +25692,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property PaymentMeansID() As PaymentMeansIDType() Get Return Me.paymentMeansIDField @@ -25703,9 +25703,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentMeansIDField = value End Set End Property - + ''' - _ + Public Property PrepaidPaymentReferenceID() As PrepaidPaymentReferenceIDType Get Return Me.prepaidPaymentReferenceIDField @@ -25714,9 +25714,9 @@ Namespace Peppol.BISBilling30Invoice Me.prepaidPaymentReferenceIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -25725,9 +25725,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property ReferenceEventCode() As ReferenceEventCodeType Get Return Me.referenceEventCodeField @@ -25736,9 +25736,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceEventCodeField = value End Set End Property - + ''' - _ + Public Property SettlementDiscountPercent() As SettlementDiscountPercentType Get Return Me.settlementDiscountPercentField @@ -25747,9 +25747,9 @@ Namespace Peppol.BISBilling30Invoice Me.settlementDiscountPercentField = value End Set End Property - + ''' - _ + Public Property PenaltySurchargePercent() As PenaltySurchargePercentType Get Return Me.penaltySurchargePercentField @@ -25758,9 +25758,9 @@ Namespace Peppol.BISBilling30Invoice Me.penaltySurchargePercentField = value End Set End Property - + ''' - _ + Public Property PaymentPercent() As PaymentPercentType Get Return Me.paymentPercentField @@ -25769,9 +25769,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPercentField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -25780,9 +25780,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property SettlementDiscountAmount() As SettlementDiscountAmountType Get Return Me.settlementDiscountAmountField @@ -25791,9 +25791,9 @@ Namespace Peppol.BISBilling30Invoice Me.settlementDiscountAmountField = value End Set End Property - + ''' - _ + Public Property PenaltyAmount() As PenaltyAmountType Get Return Me.penaltyAmountField @@ -25802,9 +25802,9 @@ Namespace Peppol.BISBilling30Invoice Me.penaltyAmountField = value End Set End Property - + ''' - _ + Public Property PaymentTermsDetailsURI() As PaymentTermsDetailsURIType Get Return Me.paymentTermsDetailsURIField @@ -25813,9 +25813,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsDetailsURIField = value End Set End Property - + ''' - _ + Public Property PaymentDueDate() As PaymentDueDateType Get Return Me.paymentDueDateField @@ -25824,9 +25824,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentDueDateField = value End Set End Property - + ''' - _ + Public Property InstallmentDueDate() As InstallmentDueDateType Get Return Me.installmentDueDateField @@ -25835,9 +25835,9 @@ Namespace Peppol.BISBilling30Invoice Me.installmentDueDateField = value End Set End Property - + ''' - _ + Public Property InvoicingPartyReference() As InvoicingPartyReferenceType Get Return Me.invoicingPartyReferenceField @@ -25846,7 +25846,7 @@ Namespace Peppol.BISBilling30Invoice Me.invoicingPartyReferenceField = value End Set End Property - + ''' Public Property SettlementPeriod() As PeriodType Get @@ -25856,7 +25856,7 @@ Namespace Peppol.BISBilling30Invoice Me.settlementPeriodField = value End Set End Property - + ''' Public Property PenaltyPeriod() As PeriodType Get @@ -25866,7 +25866,7 @@ Namespace Peppol.BISBilling30Invoice Me.penaltyPeriodField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -25876,7 +25876,7 @@ Namespace Peppol.BISBilling30Invoice Me.exchangeRateField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -25887,22 +25887,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PriceExtensionType - + Private amountField As AmountType2 - + Private taxTotalField() As TaxTotalType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -25911,9 +25911,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -25923,36 +25923,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PickupType - + Private idField As IDType - + Private actualPickupDateField As ActualPickupDateType - + Private actualPickupTimeField As ActualPickupTimeType - + Private earliestPickupDateField As EarliestPickupDateType - + Private earliestPickupTimeField As EarliestPickupTimeType - + Private latestPickupDateField As LatestPickupDateType - + Private latestPickupTimeField As LatestPickupTimeType - + Private pickupLocationField As LocationType1 - + Private pickupPartyField As PartyType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -25961,9 +25961,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ActualPickupDate() As ActualPickupDateType Get Return Me.actualPickupDateField @@ -25972,9 +25972,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualPickupDateField = value End Set End Property - + ''' - _ + Public Property ActualPickupTime() As ActualPickupTimeType Get Return Me.actualPickupTimeField @@ -25983,9 +25983,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualPickupTimeField = value End Set End Property - + ''' - _ + Public Property EarliestPickupDate() As EarliestPickupDateType Get Return Me.earliestPickupDateField @@ -25994,9 +25994,9 @@ Namespace Peppol.BISBilling30Invoice Me.earliestPickupDateField = value End Set End Property - + ''' - _ + Public Property EarliestPickupTime() As EarliestPickupTimeType Get Return Me.earliestPickupTimeField @@ -26005,9 +26005,9 @@ Namespace Peppol.BISBilling30Invoice Me.earliestPickupTimeField = value End Set End Property - + ''' - _ + Public Property LatestPickupDate() As LatestPickupDateType Get Return Me.latestPickupDateField @@ -26016,9 +26016,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestPickupDateField = value End Set End Property - + ''' - _ + Public Property LatestPickupTime() As LatestPickupTimeType Get Return Me.latestPickupTimeField @@ -26027,7 +26027,7 @@ Namespace Peppol.BISBilling30Invoice Me.latestPickupTimeField = value End Set End Property - + ''' Public Property PickupLocation() As LocationType1 Get @@ -26037,7 +26037,7 @@ Namespace Peppol.BISBilling30Invoice Me.pickupLocationField = value End Set End Property - + ''' Public Property PickupParty() As PartyType Get @@ -26048,58 +26048,58 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ReceiptLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private receivedQuantityField As ReceivedQuantityType - + Private shortQuantityField As ShortQuantityType - + Private shortageActionCodeField As ShortageActionCodeType - + Private rejectedQuantityField As RejectedQuantityType - + Private rejectReasonCodeField As RejectReasonCodeType - + Private rejectReasonField() As RejectReasonType - + Private rejectActionCodeField As RejectActionCodeType - + Private quantityDiscrepancyCodeField As QuantityDiscrepancyCodeType - + Private oversupplyQuantityField As OversupplyQuantityType - + Private receivedDateField As ReceivedDateType - + Private timingComplaintCodeField As TimingComplaintCodeType - + Private timingComplaintField As TimingComplaintType - + Private orderLineReferenceField As OrderLineReferenceType - + Private despatchLineReferenceField() As LineReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField() As ItemType - + Private shipmentField() As ShipmentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -26108,9 +26108,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -26119,9 +26119,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -26130,9 +26130,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property ReceivedQuantity() As ReceivedQuantityType Get Return Me.receivedQuantityField @@ -26141,9 +26141,9 @@ Namespace Peppol.BISBilling30Invoice Me.receivedQuantityField = value End Set End Property - + ''' - _ + Public Property ShortQuantity() As ShortQuantityType Get Return Me.shortQuantityField @@ -26152,9 +26152,9 @@ Namespace Peppol.BISBilling30Invoice Me.shortQuantityField = value End Set End Property - + ''' - _ + Public Property ShortageActionCode() As ShortageActionCodeType Get Return Me.shortageActionCodeField @@ -26163,9 +26163,9 @@ Namespace Peppol.BISBilling30Invoice Me.shortageActionCodeField = value End Set End Property - + ''' - _ + Public Property RejectedQuantity() As RejectedQuantityType Get Return Me.rejectedQuantityField @@ -26174,9 +26174,9 @@ Namespace Peppol.BISBilling30Invoice Me.rejectedQuantityField = value End Set End Property - + ''' - _ + Public Property RejectReasonCode() As RejectReasonCodeType Get Return Me.rejectReasonCodeField @@ -26185,9 +26185,9 @@ Namespace Peppol.BISBilling30Invoice Me.rejectReasonCodeField = value End Set End Property - + ''' - _ + Public Property RejectReason() As RejectReasonType() Get Return Me.rejectReasonField @@ -26196,9 +26196,9 @@ Namespace Peppol.BISBilling30Invoice Me.rejectReasonField = value End Set End Property - + ''' - _ + Public Property RejectActionCode() As RejectActionCodeType Get Return Me.rejectActionCodeField @@ -26207,9 +26207,9 @@ Namespace Peppol.BISBilling30Invoice Me.rejectActionCodeField = value End Set End Property - + ''' - _ + Public Property QuantityDiscrepancyCode() As QuantityDiscrepancyCodeType Get Return Me.quantityDiscrepancyCodeField @@ -26218,9 +26218,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityDiscrepancyCodeField = value End Set End Property - + ''' - _ + Public Property OversupplyQuantity() As OversupplyQuantityType Get Return Me.oversupplyQuantityField @@ -26229,9 +26229,9 @@ Namespace Peppol.BISBilling30Invoice Me.oversupplyQuantityField = value End Set End Property - + ''' - _ + Public Property ReceivedDate() As ReceivedDateType Get Return Me.receivedDateField @@ -26240,9 +26240,9 @@ Namespace Peppol.BISBilling30Invoice Me.receivedDateField = value End Set End Property - + ''' - _ + Public Property TimingComplaintCode() As TimingComplaintCodeType Get Return Me.timingComplaintCodeField @@ -26251,9 +26251,9 @@ Namespace Peppol.BISBilling30Invoice Me.timingComplaintCodeField = value End Set End Property - + ''' - _ + Public Property TimingComplaint() As TimingComplaintType Get Return Me.timingComplaintField @@ -26262,7 +26262,7 @@ Namespace Peppol.BISBilling30Invoice Me.timingComplaintField = value End Set End Property - + ''' Public Property OrderLineReference() As OrderLineReferenceType Get @@ -26272,9 +26272,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -26283,9 +26283,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -26294,9 +26294,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property Item() As ItemType() Get Return Me.itemField @@ -26305,9 +26305,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property Shipment() As ShipmentType() Get Return Me.shipmentField @@ -26317,140 +26317,140 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ShipmentStageType - + Private idField As IDType - + Private transportModeCodeField As TransportModeCodeType - + Private transportMeansTypeCodeField As TransportMeansTypeCodeType - + Private transitDirectionCodeField As TransitDirectionCodeType - + Private preCarriageIndicatorField As PreCarriageIndicatorType - + Private onCarriageIndicatorField As OnCarriageIndicatorType - + Private estimatedDeliveryDateField As EstimatedDeliveryDateType - + Private estimatedDeliveryTimeField As EstimatedDeliveryTimeType - + Private requiredDeliveryDateField As RequiredDeliveryDateType - + Private requiredDeliveryTimeField As RequiredDeliveryTimeType - + Private loadingSequenceIDField As LoadingSequenceIDType - + Private successiveSequenceIDField As SuccessiveSequenceIDType - + Private instructionsField() As InstructionsType - + Private demurrageInstructionsField() As DemurrageInstructionsType - + Private crewQuantityField As CrewQuantityType - + Private passengerQuantityField As PassengerQuantityType - + Private transitPeriodField As PeriodType - + Private carrierPartyField() As PartyType - + Private transportMeansField As TransportMeansType - + Private loadingPortLocationField As LocationType1 - + Private unloadingPortLocationField As LocationType1 - + Private transshipPortLocationField As LocationType1 - + Private loadingTransportEventField As TransportEventType - + Private examinationTransportEventField As TransportEventType - + Private availabilityTransportEventField As TransportEventType - + Private exportationTransportEventField As TransportEventType - + Private dischargeTransportEventField As TransportEventType - + Private warehousingTransportEventField As TransportEventType - + Private takeoverTransportEventField As TransportEventType - + Private optionalTakeoverTransportEventField As TransportEventType - + Private dropoffTransportEventField As TransportEventType - + Private actualPickupTransportEventField As TransportEventType - + Private deliveryTransportEventField As TransportEventType - + Private receiptTransportEventField As TransportEventType - + Private storageTransportEventField As TransportEventType - + Private acceptanceTransportEventField As TransportEventType - + Private terminalOperatorPartyField As PartyType - + Private customsAgentPartyField As PartyType - + Private estimatedTransitPeriodField As PeriodType - + Private freightAllowanceChargeField() As AllowanceChargeType - + Private freightChargeLocationField As LocationType1 - + Private detentionTransportEventField() As TransportEventType - + Private requestedDepartureTransportEventField As TransportEventType - + Private requestedArrivalTransportEventField As TransportEventType - + Private requestedWaypointTransportEventField() As TransportEventType - + Private plannedDepartureTransportEventField As TransportEventType - + Private plannedArrivalTransportEventField As TransportEventType - + Private plannedWaypointTransportEventField() As TransportEventType - + Private actualDepartureTransportEventField As TransportEventType - + Private actualWaypointTransportEventField As TransportEventType - + Private actualArrivalTransportEventField As TransportEventType - + Private transportEventField() As TransportEventType - + Private estimatedDepartureTransportEventField As TransportEventType - + Private estimatedArrivalTransportEventField As TransportEventType - + Private passengerPersonField() As PersonType - + Private driverPersonField() As PersonType - + Private reportingPersonField As PersonType - + Private crewMemberPersonField() As PersonType - + Private securityOfficerPersonField As PersonType - + Private masterPersonField As PersonType - + Private shipsSurgeonPersonField As PersonType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -26459,9 +26459,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property TransportModeCode() As TransportModeCodeType Get Return Me.transportModeCodeField @@ -26470,9 +26470,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportModeCodeField = value End Set End Property - + ''' - _ + Public Property TransportMeansTypeCode() As TransportMeansTypeCodeType Get Return Me.transportMeansTypeCodeField @@ -26481,9 +26481,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportMeansTypeCodeField = value End Set End Property - + ''' - _ + Public Property TransitDirectionCode() As TransitDirectionCodeType Get Return Me.transitDirectionCodeField @@ -26492,9 +26492,9 @@ Namespace Peppol.BISBilling30Invoice Me.transitDirectionCodeField = value End Set End Property - + ''' - _ + Public Property PreCarriageIndicator() As PreCarriageIndicatorType Get Return Me.preCarriageIndicatorField @@ -26503,9 +26503,9 @@ Namespace Peppol.BISBilling30Invoice Me.preCarriageIndicatorField = value End Set End Property - + ''' - _ + Public Property OnCarriageIndicator() As OnCarriageIndicatorType Get Return Me.onCarriageIndicatorField @@ -26514,9 +26514,9 @@ Namespace Peppol.BISBilling30Invoice Me.onCarriageIndicatorField = value End Set End Property - + ''' - _ + Public Property EstimatedDeliveryDate() As EstimatedDeliveryDateType Get Return Me.estimatedDeliveryDateField @@ -26525,9 +26525,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDeliveryDateField = value End Set End Property - + ''' - _ + Public Property EstimatedDeliveryTime() As EstimatedDeliveryTimeType Get Return Me.estimatedDeliveryTimeField @@ -26536,9 +26536,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property RequiredDeliveryDate() As RequiredDeliveryDateType Get Return Me.requiredDeliveryDateField @@ -26547,9 +26547,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredDeliveryDateField = value End Set End Property - + ''' - _ + Public Property RequiredDeliveryTime() As RequiredDeliveryTimeType Get Return Me.requiredDeliveryTimeField @@ -26558,9 +26558,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredDeliveryTimeField = value End Set End Property - + ''' - _ + Public Property LoadingSequenceID() As LoadingSequenceIDType Get Return Me.loadingSequenceIDField @@ -26569,9 +26569,9 @@ Namespace Peppol.BISBilling30Invoice Me.loadingSequenceIDField = value End Set End Property - + ''' - _ + Public Property SuccessiveSequenceID() As SuccessiveSequenceIDType Get Return Me.successiveSequenceIDField @@ -26580,9 +26580,9 @@ Namespace Peppol.BISBilling30Invoice Me.successiveSequenceIDField = value End Set End Property - + ''' - _ + Public Property Instructions() As InstructionsType() Get Return Me.instructionsField @@ -26591,9 +26591,9 @@ Namespace Peppol.BISBilling30Invoice Me.instructionsField = value End Set End Property - + ''' - _ + Public Property DemurrageInstructions() As DemurrageInstructionsType() Get Return Me.demurrageInstructionsField @@ -26602,9 +26602,9 @@ Namespace Peppol.BISBilling30Invoice Me.demurrageInstructionsField = value End Set End Property - + ''' - _ + Public Property CrewQuantity() As CrewQuantityType Get Return Me.crewQuantityField @@ -26613,9 +26613,9 @@ Namespace Peppol.BISBilling30Invoice Me.crewQuantityField = value End Set End Property - + ''' - _ + Public Property PassengerQuantity() As PassengerQuantityType Get Return Me.passengerQuantityField @@ -26624,7 +26624,7 @@ Namespace Peppol.BISBilling30Invoice Me.passengerQuantityField = value End Set End Property - + ''' Public Property TransitPeriod() As PeriodType Get @@ -26634,9 +26634,9 @@ Namespace Peppol.BISBilling30Invoice Me.transitPeriodField = value End Set End Property - + ''' - _ + Public Property CarrierParty() As PartyType() Get Return Me.carrierPartyField @@ -26645,7 +26645,7 @@ Namespace Peppol.BISBilling30Invoice Me.carrierPartyField = value End Set End Property - + ''' Public Property TransportMeans() As TransportMeansType Get @@ -26655,7 +26655,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportMeansField = value End Set End Property - + ''' Public Property LoadingPortLocation() As LocationType1 Get @@ -26665,7 +26665,7 @@ Namespace Peppol.BISBilling30Invoice Me.loadingPortLocationField = value End Set End Property - + ''' Public Property UnloadingPortLocation() As LocationType1 Get @@ -26675,7 +26675,7 @@ Namespace Peppol.BISBilling30Invoice Me.unloadingPortLocationField = value End Set End Property - + ''' Public Property TransshipPortLocation() As LocationType1 Get @@ -26685,7 +26685,7 @@ Namespace Peppol.BISBilling30Invoice Me.transshipPortLocationField = value End Set End Property - + ''' Public Property LoadingTransportEvent() As TransportEventType Get @@ -26695,7 +26695,7 @@ Namespace Peppol.BISBilling30Invoice Me.loadingTransportEventField = value End Set End Property - + ''' Public Property ExaminationTransportEvent() As TransportEventType Get @@ -26705,7 +26705,7 @@ Namespace Peppol.BISBilling30Invoice Me.examinationTransportEventField = value End Set End Property - + ''' Public Property AvailabilityTransportEvent() As TransportEventType Get @@ -26715,7 +26715,7 @@ Namespace Peppol.BISBilling30Invoice Me.availabilityTransportEventField = value End Set End Property - + ''' Public Property ExportationTransportEvent() As TransportEventType Get @@ -26725,7 +26725,7 @@ Namespace Peppol.BISBilling30Invoice Me.exportationTransportEventField = value End Set End Property - + ''' Public Property DischargeTransportEvent() As TransportEventType Get @@ -26735,7 +26735,7 @@ Namespace Peppol.BISBilling30Invoice Me.dischargeTransportEventField = value End Set End Property - + ''' Public Property WarehousingTransportEvent() As TransportEventType Get @@ -26745,7 +26745,7 @@ Namespace Peppol.BISBilling30Invoice Me.warehousingTransportEventField = value End Set End Property - + ''' Public Property TakeoverTransportEvent() As TransportEventType Get @@ -26755,7 +26755,7 @@ Namespace Peppol.BISBilling30Invoice Me.takeoverTransportEventField = value End Set End Property - + ''' Public Property OptionalTakeoverTransportEvent() As TransportEventType Get @@ -26765,7 +26765,7 @@ Namespace Peppol.BISBilling30Invoice Me.optionalTakeoverTransportEventField = value End Set End Property - + ''' Public Property DropoffTransportEvent() As TransportEventType Get @@ -26775,7 +26775,7 @@ Namespace Peppol.BISBilling30Invoice Me.dropoffTransportEventField = value End Set End Property - + ''' Public Property ActualPickupTransportEvent() As TransportEventType Get @@ -26785,7 +26785,7 @@ Namespace Peppol.BISBilling30Invoice Me.actualPickupTransportEventField = value End Set End Property - + ''' Public Property DeliveryTransportEvent() As TransportEventType Get @@ -26795,7 +26795,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTransportEventField = value End Set End Property - + ''' Public Property ReceiptTransportEvent() As TransportEventType Get @@ -26805,7 +26805,7 @@ Namespace Peppol.BISBilling30Invoice Me.receiptTransportEventField = value End Set End Property - + ''' Public Property StorageTransportEvent() As TransportEventType Get @@ -26815,7 +26815,7 @@ Namespace Peppol.BISBilling30Invoice Me.storageTransportEventField = value End Set End Property - + ''' Public Property AcceptanceTransportEvent() As TransportEventType Get @@ -26825,7 +26825,7 @@ Namespace Peppol.BISBilling30Invoice Me.acceptanceTransportEventField = value End Set End Property - + ''' Public Property TerminalOperatorParty() As PartyType Get @@ -26835,7 +26835,7 @@ Namespace Peppol.BISBilling30Invoice Me.terminalOperatorPartyField = value End Set End Property - + ''' Public Property CustomsAgentParty() As PartyType Get @@ -26845,7 +26845,7 @@ Namespace Peppol.BISBilling30Invoice Me.customsAgentPartyField = value End Set End Property - + ''' Public Property EstimatedTransitPeriod() As PeriodType Get @@ -26855,9 +26855,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedTransitPeriodField = value End Set End Property - + ''' - _ + Public Property FreightAllowanceCharge() As AllowanceChargeType() Get Return Me.freightAllowanceChargeField @@ -26866,7 +26866,7 @@ Namespace Peppol.BISBilling30Invoice Me.freightAllowanceChargeField = value End Set End Property - + ''' Public Property FreightChargeLocation() As LocationType1 Get @@ -26876,9 +26876,9 @@ Namespace Peppol.BISBilling30Invoice Me.freightChargeLocationField = value End Set End Property - + ''' - _ + Public Property DetentionTransportEvent() As TransportEventType() Get Return Me.detentionTransportEventField @@ -26887,7 +26887,7 @@ Namespace Peppol.BISBilling30Invoice Me.detentionTransportEventField = value End Set End Property - + ''' Public Property RequestedDepartureTransportEvent() As TransportEventType Get @@ -26897,7 +26897,7 @@ Namespace Peppol.BISBilling30Invoice Me.requestedDepartureTransportEventField = value End Set End Property - + ''' Public Property RequestedArrivalTransportEvent() As TransportEventType Get @@ -26907,9 +26907,9 @@ Namespace Peppol.BISBilling30Invoice Me.requestedArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property RequestedWaypointTransportEvent() As TransportEventType() Get Return Me.requestedWaypointTransportEventField @@ -26918,7 +26918,7 @@ Namespace Peppol.BISBilling30Invoice Me.requestedWaypointTransportEventField = value End Set End Property - + ''' Public Property PlannedDepartureTransportEvent() As TransportEventType Get @@ -26928,7 +26928,7 @@ Namespace Peppol.BISBilling30Invoice Me.plannedDepartureTransportEventField = value End Set End Property - + ''' Public Property PlannedArrivalTransportEvent() As TransportEventType Get @@ -26938,9 +26938,9 @@ Namespace Peppol.BISBilling30Invoice Me.plannedArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property PlannedWaypointTransportEvent() As TransportEventType() Get Return Me.plannedWaypointTransportEventField @@ -26949,7 +26949,7 @@ Namespace Peppol.BISBilling30Invoice Me.plannedWaypointTransportEventField = value End Set End Property - + ''' Public Property ActualDepartureTransportEvent() As TransportEventType Get @@ -26959,7 +26959,7 @@ Namespace Peppol.BISBilling30Invoice Me.actualDepartureTransportEventField = value End Set End Property - + ''' Public Property ActualWaypointTransportEvent() As TransportEventType Get @@ -26969,7 +26969,7 @@ Namespace Peppol.BISBilling30Invoice Me.actualWaypointTransportEventField = value End Set End Property - + ''' Public Property ActualArrivalTransportEvent() As TransportEventType Get @@ -26979,9 +26979,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property TransportEvent() As TransportEventType() Get Return Me.transportEventField @@ -26990,7 +26990,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportEventField = value End Set End Property - + ''' Public Property EstimatedDepartureTransportEvent() As TransportEventType Get @@ -27000,7 +27000,7 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDepartureTransportEventField = value End Set End Property - + ''' Public Property EstimatedArrivalTransportEvent() As TransportEventType Get @@ -27010,9 +27010,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedArrivalTransportEventField = value End Set End Property - + ''' - _ + Public Property PassengerPerson() As PersonType() Get Return Me.passengerPersonField @@ -27021,9 +27021,9 @@ Namespace Peppol.BISBilling30Invoice Me.passengerPersonField = value End Set End Property - + ''' - _ + Public Property DriverPerson() As PersonType() Get Return Me.driverPersonField @@ -27032,7 +27032,7 @@ Namespace Peppol.BISBilling30Invoice Me.driverPersonField = value End Set End Property - + ''' Public Property ReportingPerson() As PersonType Get @@ -27042,9 +27042,9 @@ Namespace Peppol.BISBilling30Invoice Me.reportingPersonField = value End Set End Property - + ''' - _ + Public Property CrewMemberPerson() As PersonType() Get Return Me.crewMemberPersonField @@ -27053,7 +27053,7 @@ Namespace Peppol.BISBilling30Invoice Me.crewMemberPersonField = value End Set End Property - + ''' Public Property SecurityOfficerPerson() As PersonType Get @@ -27063,7 +27063,7 @@ Namespace Peppol.BISBilling30Invoice Me.securityOfficerPersonField = value End Set End Property - + ''' Public Property MasterPerson() As PersonType Get @@ -27073,7 +27073,7 @@ Namespace Peppol.BISBilling30Invoice Me.masterPersonField = value End Set End Property - + ''' Public Property ShipsSurgeonPerson() As PersonType Get @@ -27084,26 +27084,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EnvironmentalEmissionType - + Private environmentalEmissionTypeCodeField As EnvironmentalEmissionTypeCodeType - + Private valueMeasureField As ValueMeasureType - + Private descriptionField() As DescriptionType - + Private emissionCalculationMethodField() As EmissionCalculationMethodType - + ''' - _ + Public Property EnvironmentalEmissionTypeCode() As EnvironmentalEmissionTypeCodeType Get Return Me.environmentalEmissionTypeCodeField @@ -27112,9 +27112,9 @@ Namespace Peppol.BISBilling30Invoice Me.environmentalEmissionTypeCodeField = value End Set End Property - + ''' - _ + Public Property ValueMeasure() As ValueMeasureType Get Return Me.valueMeasureField @@ -27123,9 +27123,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueMeasureField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -27134,9 +27134,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EmissionCalculationMethod() As EmissionCalculationMethodType() Get Return Me.emissionCalculationMethodField @@ -27146,26 +27146,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EmissionCalculationMethodType - + Private calculationMethodCodeField As CalculationMethodCodeType - + Private fullnessIndicationCodeField As FullnessIndicationCodeType - + Private measurementFromLocationField As LocationType1 - + Private measurementToLocationField As LocationType1 - + ''' - _ + Public Property CalculationMethodCode() As CalculationMethodCodeType Get Return Me.calculationMethodCodeField @@ -27174,9 +27174,9 @@ Namespace Peppol.BISBilling30Invoice Me.calculationMethodCodeField = value End Set End Property - + ''' - _ + Public Property FullnessIndicationCode() As FullnessIndicationCodeType Get Return Me.fullnessIndicationCodeField @@ -27185,7 +27185,7 @@ Namespace Peppol.BISBilling30Invoice Me.fullnessIndicationCodeField = value End Set End Property - + ''' Public Property MeasurementFromLocation() As LocationType1 Get @@ -27195,7 +27195,7 @@ Namespace Peppol.BISBilling30Invoice Me.measurementFromLocationField = value End Set End Property - + ''' Public Property MeasurementToLocation() As LocationType1 Get @@ -27206,20 +27206,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ServiceFrequencyType - + Private weekDayCodeField As WeekDayCodeType - + ''' - _ + Public Property WeekDayCode() As WeekDayCodeType Get Return Me.weekDayCodeField @@ -27229,24 +27229,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RelatedItemType - + Private idField As IDType - + Private quantityField As QuantityType2 - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -27255,9 +27255,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -27266,9 +27266,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -27278,32 +27278,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CustomerPartyType - + Private customerAssignedAccountIDField As CustomerAssignedAccountIDType - + Private supplierAssignedAccountIDField As SupplierAssignedAccountIDType - + Private additionalAccountIDField() As AdditionalAccountIDType - + Private partyField As PartyType - + Private deliveryContactField As ContactType - + Private accountingContactField As ContactType - + Private buyerContactField As ContactType - + ''' - _ + Public Property CustomerAssignedAccountID() As CustomerAssignedAccountIDType Get Return Me.customerAssignedAccountIDField @@ -27312,9 +27312,9 @@ Namespace Peppol.BISBilling30Invoice Me.customerAssignedAccountIDField = value End Set End Property - + ''' - _ + Public Property SupplierAssignedAccountID() As SupplierAssignedAccountIDType Get Return Me.supplierAssignedAccountIDField @@ -27323,9 +27323,9 @@ Namespace Peppol.BISBilling30Invoice Me.supplierAssignedAccountIDField = value End Set End Property - + ''' - _ + Public Property AdditionalAccountID() As AdditionalAccountIDType() Get Return Me.additionalAccountIDField @@ -27334,7 +27334,7 @@ Namespace Peppol.BISBilling30Invoice Me.additionalAccountIDField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -27344,7 +27344,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyField = value End Set End Property - + ''' Public Property DeliveryContact() As ContactType Get @@ -27354,7 +27354,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryContactField = value End Set End Property - + ''' Public Property AccountingContact() As ContactType Get @@ -27364,7 +27364,7 @@ Namespace Peppol.BISBilling30Invoice Me.accountingContactField = value End Set End Property - + ''' Public Property BuyerContact() As ContactType Get @@ -27375,34 +27375,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ActivityDataLineType - + Private idField As IDType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private activityPeriodField As PeriodType - + Private activityOriginLocationField As LocationType1 - + Private activityFinalLocationField As LocationType1 - + Private salesItemField() As SalesItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -27411,9 +27411,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -27422,7 +27422,7 @@ Namespace Peppol.BISBilling30Invoice Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' Public Property BuyerCustomerParty() As CustomerPartyType Get @@ -27432,7 +27432,7 @@ Namespace Peppol.BISBilling30Invoice Me.buyerCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -27442,7 +27442,7 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property ActivityPeriod() As PeriodType Get @@ -27452,7 +27452,7 @@ Namespace Peppol.BISBilling30Invoice Me.activityPeriodField = value End Set End Property - + ''' Public Property ActivityOriginLocation() As LocationType1 Get @@ -27462,7 +27462,7 @@ Namespace Peppol.BISBilling30Invoice Me.activityOriginLocationField = value End Set End Property - + ''' Public Property ActivityFinalLocation() As LocationType1 Get @@ -27472,9 +27472,9 @@ Namespace Peppol.BISBilling30Invoice Me.activityFinalLocationField = value End Set End Property - + ''' - _ + Public Property SalesItem() As SalesItemType() Get Return Me.salesItemField @@ -27484,28 +27484,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SalesItemType - + Private quantityField As QuantityType2 - + Private activityPropertyField() As ActivityPropertyType - + Private taxExclusivePriceField() As PriceType - + Private taxInclusivePriceField() As PriceType - + Private itemField As ItemType - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -27514,9 +27514,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property ActivityProperty() As ActivityPropertyType() Get Return Me.activityPropertyField @@ -27525,9 +27525,9 @@ Namespace Peppol.BISBilling30Invoice Me.activityPropertyField = value End Set End Property - + ''' - _ + Public Property TaxExclusivePrice() As PriceType() Get Return Me.taxExclusivePriceField @@ -27536,9 +27536,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxExclusivePriceField = value End Set End Property - + ''' - _ + Public Property TaxInclusivePrice() As PriceType() Get Return Me.taxInclusivePriceField @@ -27547,7 +27547,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxInclusivePriceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -27558,22 +27558,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ActivityPropertyType - + Private nameField As NameType1 - + Private valueField As ValueType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -27582,9 +27582,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -27594,26 +27594,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DocumentResponseType - + Private responseField As ResponseType - + Private documentReferenceField() As DocumentReferenceType - + Private issuerPartyField As PartyType - + Private recipientPartyField As PartyType - + Private lineResponseField() As LineResponseType - + ''' Public Property Response() As ResponseType Get @@ -27623,9 +27623,9 @@ Namespace Peppol.BISBilling30Invoice Me.responseField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -27634,7 +27634,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -27644,7 +27644,7 @@ Namespace Peppol.BISBilling30Invoice Me.issuerPartyField = value End Set End Property - + ''' Public Property RecipientParty() As PartyType Get @@ -27654,9 +27654,9 @@ Namespace Peppol.BISBilling30Invoice Me.recipientPartyField = value End Set End Property - + ''' - _ + Public Property LineResponse() As LineResponseType() Get Return Me.lineResponseField @@ -27666,30 +27666,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ResponseType - + Private referenceIDField As ReferenceIDType - + Private responseCodeField As ResponseCodeType - + Private descriptionField() As DescriptionType - + Private effectiveDateField As EffectiveDateType - + Private effectiveTimeField As EffectiveTimeType - + Private statusField() As StatusType - + ''' - _ + Public Property ReferenceID() As ReferenceIDType Get Return Me.referenceIDField @@ -27698,9 +27698,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceIDField = value End Set End Property - + ''' - _ + Public Property ResponseCode() As ResponseCodeType Get Return Me.responseCodeField @@ -27709,9 +27709,9 @@ Namespace Peppol.BISBilling30Invoice Me.responseCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -27720,9 +27720,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EffectiveDate() As EffectiveDateType Get Return Me.effectiveDateField @@ -27731,9 +27731,9 @@ Namespace Peppol.BISBilling30Invoice Me.effectiveDateField = value End Set End Property - + ''' - _ + Public Property EffectiveTime() As EffectiveTimeType Get Return Me.effectiveTimeField @@ -27742,9 +27742,9 @@ Namespace Peppol.BISBilling30Invoice Me.effectiveTimeField = value End Set End Property - + ''' - _ + Public Property Status() As StatusType() Get Return Me.statusField @@ -27754,20 +27754,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LineResponseType - + Private lineReferenceField As LineReferenceType - + Private responseField() As ResponseType - + ''' Public Property LineReference() As LineReferenceType Get @@ -27777,9 +27777,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineReferenceField = value End Set End Property - + ''' - _ + Public Property Response() As ResponseType() Get Return Me.responseField @@ -27789,46 +27789,46 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class QualifyingPartyType - + Private participationPercentField As ParticipationPercentType - + Private personalSituationField() As PersonalSituationType - + Private operatingYearsQuantityField As OperatingYearsQuantityType - + Private employeeQuantityField As EmployeeQuantityType - + Private businessClassificationEvidenceIDField As BusinessClassificationEvidenceIDType - + Private businessIdentityEvidenceIDField As BusinessIdentityEvidenceIDType - + Private tendererRoleCodeField As TendererRoleCodeType - + Private businessClassificationSchemeField As ClassificationSchemeType - + Private technicalCapabilityField() As CapabilityType - + Private financialCapabilityField() As CapabilityType - + Private completedTaskField() As CompletedTaskType - + Private declarationField() As DeclarationType - + Private partyField As PartyType - + Private economicOperatorRoleField As EconomicOperatorRoleType - + ''' - _ + Public Property ParticipationPercent() As ParticipationPercentType Get Return Me.participationPercentField @@ -27837,9 +27837,9 @@ Namespace Peppol.BISBilling30Invoice Me.participationPercentField = value End Set End Property - + ''' - _ + Public Property PersonalSituation() As PersonalSituationType() Get Return Me.personalSituationField @@ -27848,9 +27848,9 @@ Namespace Peppol.BISBilling30Invoice Me.personalSituationField = value End Set End Property - + ''' - _ + Public Property OperatingYearsQuantity() As OperatingYearsQuantityType Get Return Me.operatingYearsQuantityField @@ -27859,9 +27859,9 @@ Namespace Peppol.BISBilling30Invoice Me.operatingYearsQuantityField = value End Set End Property - + ''' - _ + Public Property EmployeeQuantity() As EmployeeQuantityType Get Return Me.employeeQuantityField @@ -27870,9 +27870,9 @@ Namespace Peppol.BISBilling30Invoice Me.employeeQuantityField = value End Set End Property - + ''' - _ + Public Property BusinessClassificationEvidenceID() As BusinessClassificationEvidenceIDType Get Return Me.businessClassificationEvidenceIDField @@ -27881,9 +27881,9 @@ Namespace Peppol.BISBilling30Invoice Me.businessClassificationEvidenceIDField = value End Set End Property - + ''' - _ + Public Property BusinessIdentityEvidenceID() As BusinessIdentityEvidenceIDType Get Return Me.businessIdentityEvidenceIDField @@ -27892,9 +27892,9 @@ Namespace Peppol.BISBilling30Invoice Me.businessIdentityEvidenceIDField = value End Set End Property - + ''' - _ + Public Property TendererRoleCode() As TendererRoleCodeType Get Return Me.tendererRoleCodeField @@ -27903,7 +27903,7 @@ Namespace Peppol.BISBilling30Invoice Me.tendererRoleCodeField = value End Set End Property - + ''' Public Property BusinessClassificationScheme() As ClassificationSchemeType Get @@ -27913,9 +27913,9 @@ Namespace Peppol.BISBilling30Invoice Me.businessClassificationSchemeField = value End Set End Property - + ''' - _ + Public Property TechnicalCapability() As CapabilityType() Get Return Me.technicalCapabilityField @@ -27924,9 +27924,9 @@ Namespace Peppol.BISBilling30Invoice Me.technicalCapabilityField = value End Set End Property - + ''' - _ + Public Property FinancialCapability() As CapabilityType() Get Return Me.financialCapabilityField @@ -27935,9 +27935,9 @@ Namespace Peppol.BISBilling30Invoice Me.financialCapabilityField = value End Set End Property - + ''' - _ + Public Property CompletedTask() As CompletedTaskType() Get Return Me.completedTaskField @@ -27946,9 +27946,9 @@ Namespace Peppol.BISBilling30Invoice Me.completedTaskField = value End Set End Property - + ''' - _ + Public Property Declaration() As DeclarationType() Get Return Me.declarationField @@ -27957,7 +27957,7 @@ Namespace Peppol.BISBilling30Invoice Me.declarationField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -27967,7 +27967,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyField = value End Set End Property - + ''' Public Property EconomicOperatorRole() As EconomicOperatorRoleType Get @@ -27978,46 +27978,46 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ClassificationSchemeType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private lastRevisionDateField As LastRevisionDateType - + Private lastRevisionTimeField As LastRevisionTimeType - + Private noteField() As NoteType - + Private nameField As NameType1 - + Private descriptionField() As DescriptionType - + Private agencyIDField As AgencyIDType - + Private agencyNameField As AgencyNameType - + Private versionIDField As VersionIDType - + Private uRIField As URIType - + Private schemeURIField As SchemeURIType - + Private languageIDField As LanguageIDType - + Private classificationCategoryField() As ClassificationCategoryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -28026,9 +28026,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -28037,9 +28037,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property LastRevisionDate() As LastRevisionDateType Get Return Me.lastRevisionDateField @@ -28048,9 +28048,9 @@ Namespace Peppol.BISBilling30Invoice Me.lastRevisionDateField = value End Set End Property - + ''' - _ + Public Property LastRevisionTime() As LastRevisionTimeType Get Return Me.lastRevisionTimeField @@ -28059,9 +28059,9 @@ Namespace Peppol.BISBilling30Invoice Me.lastRevisionTimeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -28070,9 +28070,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -28081,9 +28081,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28092,9 +28092,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property AgencyID() As AgencyIDType Get Return Me.agencyIDField @@ -28103,9 +28103,9 @@ Namespace Peppol.BISBilling30Invoice Me.agencyIDField = value End Set End Property - + ''' - _ + Public Property AgencyName() As AgencyNameType Get Return Me.agencyNameField @@ -28114,9 +28114,9 @@ Namespace Peppol.BISBilling30Invoice Me.agencyNameField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -28125,9 +28125,9 @@ Namespace Peppol.BISBilling30Invoice Me.versionIDField = value End Set End Property - + ''' - _ + Public Property URI() As URIType Get Return Me.uRIField @@ -28136,9 +28136,9 @@ Namespace Peppol.BISBilling30Invoice Me.uRIField = value End Set End Property - + ''' - _ + Public Property SchemeURI() As SchemeURIType Get Return Me.schemeURIField @@ -28147,9 +28147,9 @@ Namespace Peppol.BISBilling30Invoice Me.schemeURIField = value End Set End Property - + ''' - _ + Public Property LanguageID() As LanguageIDType Get Return Me.languageIDField @@ -28158,9 +28158,9 @@ Namespace Peppol.BISBilling30Invoice Me.languageIDField = value End Set End Property - + ''' - _ + Public Property ClassificationCategory() As ClassificationCategoryType() Get Return Me.classificationCategoryField @@ -28170,26 +28170,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ClassificationCategoryType - + Private nameField As NameType1 - + Private codeValueField As CodeValueType - + Private descriptionField() As DescriptionType - + Private categorizesClassificationCategoryField() As ClassificationCategoryType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -28198,9 +28198,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property CodeValue() As CodeValueType Get Return Me.codeValueField @@ -28209,9 +28209,9 @@ Namespace Peppol.BISBilling30Invoice Me.codeValueField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28220,9 +28220,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CategorizesClassificationCategory() As ClassificationCategoryType() Get Return Me.categorizesClassificationCategoryField @@ -28232,30 +28232,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CapabilityType - + Private capabilityTypeCodeField As CapabilityTypeCodeType - + Private descriptionField() As DescriptionType - + Private valueAmountField As ValueAmountType - + Private valueQuantityField As ValueQuantityType - + Private evidenceSuppliedField() As EvidenceSuppliedType - + Private validityPeriodField As PeriodType - + ''' - _ + Public Property CapabilityTypeCode() As CapabilityTypeCodeType Get Return Me.capabilityTypeCodeField @@ -28264,9 +28264,9 @@ Namespace Peppol.BISBilling30Invoice Me.capabilityTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28275,9 +28275,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ValueAmount() As ValueAmountType Get Return Me.valueAmountField @@ -28286,9 +28286,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueAmountField = value End Set End Property - + ''' - _ + Public Property ValueQuantity() As ValueQuantityType Get Return Me.valueQuantityField @@ -28297,9 +28297,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueQuantityField = value End Set End Property - + ''' - _ + Public Property EvidenceSupplied() As EvidenceSuppliedType() Get Return Me.evidenceSuppliedField @@ -28308,7 +28308,7 @@ Namespace Peppol.BISBilling30Invoice Me.evidenceSuppliedField = value End Set End Property - + ''' Public Property ValidityPeriod() As PeriodType Get @@ -28319,20 +28319,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EvidenceSuppliedType - + Private idField As IDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -28342,32 +28342,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CompletedTaskType - + Private annualAverageAmountField As AnnualAverageAmountType - + Private totalTaskAmountField As TotalTaskAmountType - + Private partyCapacityAmountField As PartyCapacityAmountType - + Private descriptionField() As DescriptionType - + Private evidenceSuppliedField() As EvidenceSuppliedType - + Private periodField As PeriodType - + Private recipientCustomerPartyField As CustomerPartyType - + ''' - _ + Public Property AnnualAverageAmount() As AnnualAverageAmountType Get Return Me.annualAverageAmountField @@ -28376,9 +28376,9 @@ Namespace Peppol.BISBilling30Invoice Me.annualAverageAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaskAmount() As TotalTaskAmountType Get Return Me.totalTaskAmountField @@ -28387,9 +28387,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalTaskAmountField = value End Set End Property - + ''' - _ + Public Property PartyCapacityAmount() As PartyCapacityAmountType Get Return Me.partyCapacityAmountField @@ -28398,9 +28398,9 @@ Namespace Peppol.BISBilling30Invoice Me.partyCapacityAmountField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28409,9 +28409,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EvidenceSupplied() As EvidenceSuppliedType() Get Return Me.evidenceSuppliedField @@ -28420,7 +28420,7 @@ Namespace Peppol.BISBilling30Invoice Me.evidenceSuppliedField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -28430,7 +28430,7 @@ Namespace Peppol.BISBilling30Invoice Me.periodField = value End Set End Property - + ''' Public Property RecipientCustomerParty() As CustomerPartyType Get @@ -28441,26 +28441,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DeclarationType - + Private nameField() As NameType1 - + Private declarationTypeCodeField As DeclarationTypeCodeType - + Private descriptionField() As DescriptionType - + Private evidenceSuppliedField() As EvidenceSuppliedType - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -28469,9 +28469,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property DeclarationTypeCode() As DeclarationTypeCodeType Get Return Me.declarationTypeCodeField @@ -28480,9 +28480,9 @@ Namespace Peppol.BISBilling30Invoice Me.declarationTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28491,9 +28491,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property EvidenceSupplied() As EvidenceSuppliedType() Get Return Me.evidenceSuppliedField @@ -28503,22 +28503,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EconomicOperatorRoleType - + Private roleCodeField As RoleCodeType - + Private roleDescriptionField() As RoleDescriptionType - + ''' - _ + Public Property RoleCode() As RoleCodeType Get Return Me.roleCodeField @@ -28527,9 +28527,9 @@ Namespace Peppol.BISBilling30Invoice Me.roleCodeField = value End Set End Property - + ''' - _ + Public Property RoleDescription() As RoleDescriptionType() Get Return Me.roleDescriptionField @@ -28539,32 +28539,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SubcontractTermsType - + Private rateField As RateType1 - + Private unknownPriceIndicatorField As UnknownPriceIndicatorType - + Private descriptionField() As DescriptionType - + Private amountField As AmountType2 - + Private subcontractingConditionsCodeField As SubcontractingConditionsCodeType - + Private maximumPercentField As MaximumPercentType - + Private minimumPercentField As MinimumPercentType - + ''' - _ + Public Property Rate() As RateType1 Get Return Me.rateField @@ -28573,9 +28573,9 @@ Namespace Peppol.BISBilling30Invoice Me.rateField = value End Set End Property - + ''' - _ + Public Property UnknownPriceIndicator() As UnknownPriceIndicatorType Get Return Me.unknownPriceIndicatorField @@ -28584,9 +28584,9 @@ Namespace Peppol.BISBilling30Invoice Me.unknownPriceIndicatorField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -28595,9 +28595,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -28606,9 +28606,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property SubcontractingConditionsCode() As SubcontractingConditionsCodeType Get Return Me.subcontractingConditionsCodeField @@ -28617,9 +28617,9 @@ Namespace Peppol.BISBilling30Invoice Me.subcontractingConditionsCodeField = value End Set End Property - + ''' - _ + Public Property MaximumPercent() As MaximumPercentType Get Return Me.maximumPercentField @@ -28628,9 +28628,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumPercentField = value End Set End Property - + ''' - _ + Public Property MinimumPercent() As MinimumPercentType Get Return Me.minimumPercentField @@ -28640,82 +28640,82 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class LineItemType - + Private idField As IDType - + Private salesOrderIDField As SalesOrderIDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private lineStatusCodeField As LineStatusCodeType - + Private quantityField As QuantityType2 - + Private lineExtensionAmountField As LineExtensionAmountType - + Private totalTaxAmountField As TotalTaxAmountType - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private minimumBackorderQuantityField As MinimumBackorderQuantityType - + Private maximumBackorderQuantityField As MaximumBackorderQuantityType - + Private inspectionMethodCodeField As InspectionMethodCodeType - + Private partialDeliveryIndicatorField As PartialDeliveryIndicatorType - + Private backOrderAllowedIndicatorField As BackOrderAllowedIndicatorType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private warrantyInformationField() As WarrantyInformationType - + Private deliveryField() As DeliveryType - + Private deliveryTermsField As DeliveryTermsType - + Private originatorPartyField As PartyType - + Private orderedShipmentField() As OrderedShipmentType - + Private pricingReferenceField As PricingReferenceType - + Private allowanceChargeField() As AllowanceChargeType - + Private priceField As PriceType - + Private itemField As ItemType - + Private subLineItemField() As LineItemType - + Private warrantyValidityPeriodField As PeriodType - + Private warrantyPartyField As PartyType - + Private taxTotalField() As TaxTotalType - + Private itemPriceExtensionField As PriceExtensionType - + Private lineReferenceField() As LineReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -28724,9 +28724,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SalesOrderID() As SalesOrderIDType Get Return Me.salesOrderIDField @@ -28735,9 +28735,9 @@ Namespace Peppol.BISBilling30Invoice Me.salesOrderIDField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -28746,9 +28746,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -28757,9 +28757,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property LineStatusCode() As LineStatusCodeType Get Return Me.lineStatusCodeField @@ -28768,9 +28768,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineStatusCodeField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -28779,9 +28779,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -28790,9 +28790,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaxAmount() As TotalTaxAmountType Get Return Me.totalTaxAmountField @@ -28801,9 +28801,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalTaxAmountField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -28812,9 +28812,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -28823,9 +28823,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property MinimumBackorderQuantity() As MinimumBackorderQuantityType Get Return Me.minimumBackorderQuantityField @@ -28834,9 +28834,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumBackorderQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumBackorderQuantity() As MaximumBackorderQuantityType Get Return Me.maximumBackorderQuantityField @@ -28845,9 +28845,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumBackorderQuantityField = value End Set End Property - + ''' - _ + Public Property InspectionMethodCode() As InspectionMethodCodeType Get Return Me.inspectionMethodCodeField @@ -28856,9 +28856,9 @@ Namespace Peppol.BISBilling30Invoice Me.inspectionMethodCodeField = value End Set End Property - + ''' - _ + Public Property PartialDeliveryIndicator() As PartialDeliveryIndicatorType Get Return Me.partialDeliveryIndicatorField @@ -28867,9 +28867,9 @@ Namespace Peppol.BISBilling30Invoice Me.partialDeliveryIndicatorField = value End Set End Property - + ''' - _ + Public Property BackOrderAllowedIndicator() As BackOrderAllowedIndicatorType Get Return Me.backOrderAllowedIndicatorField @@ -28878,9 +28878,9 @@ Namespace Peppol.BISBilling30Invoice Me.backOrderAllowedIndicatorField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -28889,9 +28889,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -28900,9 +28900,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property WarrantyInformation() As WarrantyInformationType() Get Return Me.warrantyInformationField @@ -28911,9 +28911,9 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyInformationField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -28922,7 +28922,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' Public Property DeliveryTerms() As DeliveryTermsType Get @@ -28932,7 +28932,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' Public Property OriginatorParty() As PartyType Get @@ -28942,9 +28942,9 @@ Namespace Peppol.BISBilling30Invoice Me.originatorPartyField = value End Set End Property - + ''' - _ + Public Property OrderedShipment() As OrderedShipmentType() Get Return Me.orderedShipmentField @@ -28953,7 +28953,7 @@ Namespace Peppol.BISBilling30Invoice Me.orderedShipmentField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -28963,9 +28963,9 @@ Namespace Peppol.BISBilling30Invoice Me.pricingReferenceField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -28974,7 +28974,7 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -28984,7 +28984,7 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -28994,9 +28994,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property SubLineItem() As LineItemType() Get Return Me.subLineItemField @@ -29005,7 +29005,7 @@ Namespace Peppol.BISBilling30Invoice Me.subLineItemField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -29015,7 +29015,7 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyValidityPeriodField = value End Set End Property - + ''' Public Property WarrantyParty() As PartyType Get @@ -29025,9 +29025,9 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyPartyField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -29036,7 +29036,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' Public Property ItemPriceExtension() As PriceExtensionType Get @@ -29046,9 +29046,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemPriceExtensionField = value End Set End Property - + ''' - _ + Public Property LineReference() As LineReferenceType() Get Return Me.lineReferenceField @@ -29058,20 +29058,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class OrderedShipmentType - + Private shipmentField As ShipmentType - + Private packageField() As PackageType - + ''' Public Property Shipment() As ShipmentType Get @@ -29081,9 +29081,9 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentField = value End Set End Property - + ''' - _ + Public Property Package() As PackageType() Get Return Me.packageField @@ -29093,36 +29093,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MonetaryTotalType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxExclusiveAmountField As TaxExclusiveAmountType - + Private taxInclusiveAmountField As TaxInclusiveAmountType - + Private allowanceTotalAmountField As AllowanceTotalAmountType - + Private chargeTotalAmountField As ChargeTotalAmountType - + Private prepaidAmountField As PrepaidAmountType - + Private payableRoundingAmountField As PayableRoundingAmountType - + Private payableAmountField As PayableAmountType - + Private payableAlternativeAmountField As PayableAlternativeAmountType - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -29131,9 +29131,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxExclusiveAmount() As TaxExclusiveAmountType Get Return Me.taxExclusiveAmountField @@ -29142,9 +29142,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxExclusiveAmountField = value End Set End Property - + ''' - _ + Public Property TaxInclusiveAmount() As TaxInclusiveAmountType Get Return Me.taxInclusiveAmountField @@ -29153,9 +29153,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxInclusiveAmountField = value End Set End Property - + ''' - _ + Public Property AllowanceTotalAmount() As AllowanceTotalAmountType Get Return Me.allowanceTotalAmountField @@ -29164,9 +29164,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceTotalAmountField = value End Set End Property - + ''' - _ + Public Property ChargeTotalAmount() As ChargeTotalAmountType Get Return Me.chargeTotalAmountField @@ -29175,9 +29175,9 @@ Namespace Peppol.BISBilling30Invoice Me.chargeTotalAmountField = value End Set End Property - + ''' - _ + Public Property PrepaidAmount() As PrepaidAmountType Get Return Me.prepaidAmountField @@ -29186,9 +29186,9 @@ Namespace Peppol.BISBilling30Invoice Me.prepaidAmountField = value End Set End Property - + ''' - _ + Public Property PayableRoundingAmount() As PayableRoundingAmountType Get Return Me.payableRoundingAmountField @@ -29197,9 +29197,9 @@ Namespace Peppol.BISBilling30Invoice Me.payableRoundingAmountField = value End Set End Property - + ''' - _ + Public Property PayableAmount() As PayableAmountType Get Return Me.payableAmountField @@ -29208,9 +29208,9 @@ Namespace Peppol.BISBilling30Invoice Me.payableAmountField = value End Set End Property - + ''' - _ + Public Property PayableAlternativeAmount() As PayableAlternativeAmountType Get Return Me.payableAlternativeAmountField @@ -29220,28 +29220,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AppealTermsType - + Private descriptionField() As DescriptionType - + Private presentationPeriodField As PeriodType - + Private appealInformationPartyField As PartyType - + Private appealReceiverPartyField As PartyType - + Private mediationPartyField As PartyType - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -29250,7 +29250,7 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' Public Property PresentationPeriod() As PeriodType Get @@ -29260,7 +29260,7 @@ Namespace Peppol.BISBilling30Invoice Me.presentationPeriodField = value End Set End Property - + ''' Public Property AppealInformationParty() As PartyType Get @@ -29270,7 +29270,7 @@ Namespace Peppol.BISBilling30Invoice Me.appealInformationPartyField = value End Set End Property - + ''' Public Property AppealReceiverParty() As PartyType Get @@ -29280,7 +29280,7 @@ Namespace Peppol.BISBilling30Invoice Me.appealReceiverPartyField = value End Set End Property - + ''' Public Property MediationParty() As PartyType Get @@ -29291,24 +29291,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RegulationType - + Private nameField As NameType1 - + Private legalReferenceField As LegalReferenceType - + Private ontologyURIField As OntologyURIType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -29317,9 +29317,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property LegalReference() As LegalReferenceType Get Return Me.legalReferenceField @@ -29328,9 +29328,9 @@ Namespace Peppol.BISBilling30Invoice Me.legalReferenceField = value End Set End Property - + ''' - _ + Public Property OntologyURI() As OntologyURIType Get Return Me.ontologyURIField @@ -29340,32 +29340,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AuctionTermsType - + Private auctionConstraintIndicatorField As AuctionConstraintIndicatorType - + Private justificationDescriptionField() As JustificationDescriptionType - + Private descriptionField() As DescriptionType - + Private processDescriptionField() As ProcessDescriptionType - + Private conditionsDescriptionField() As ConditionsDescriptionType - + Private electronicDeviceDescriptionField() As ElectronicDeviceDescriptionType - + Private auctionURIField As AuctionURIType - + ''' - _ + Public Property AuctionConstraintIndicator() As AuctionConstraintIndicatorType Get Return Me.auctionConstraintIndicatorField @@ -29374,9 +29374,9 @@ Namespace Peppol.BISBilling30Invoice Me.auctionConstraintIndicatorField = value End Set End Property - + ''' - _ + Public Property JustificationDescription() As JustificationDescriptionType() Get Return Me.justificationDescriptionField @@ -29385,9 +29385,9 @@ Namespace Peppol.BISBilling30Invoice Me.justificationDescriptionField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -29396,9 +29396,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ProcessDescription() As ProcessDescriptionType() Get Return Me.processDescriptionField @@ -29407,9 +29407,9 @@ Namespace Peppol.BISBilling30Invoice Me.processDescriptionField = value End Set End Property - + ''' - _ + Public Property ConditionsDescription() As ConditionsDescriptionType() Get Return Me.conditionsDescriptionField @@ -29418,9 +29418,9 @@ Namespace Peppol.BISBilling30Invoice Me.conditionsDescriptionField = value End Set End Property - + ''' - _ + Public Property ElectronicDeviceDescription() As ElectronicDeviceDescriptionType() Get Return Me.electronicDeviceDescriptionField @@ -29429,9 +29429,9 @@ Namespace Peppol.BISBilling30Invoice Me.electronicDeviceDescriptionField = value End Set End Property - + ''' - _ + Public Property AuctionURI() As AuctionURIType Get Return Me.auctionURIField @@ -29441,40 +29441,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderedProjectType - + Private variantIDField As VariantIDType - + Private feeAmountField As FeeAmountType - + Private feeDescriptionField() As FeeDescriptionType - + Private tenderEnvelopeIDField As TenderEnvelopeIDType - + Private tenderEnvelopeTypeCodeField As TenderEnvelopeTypeCodeType - + Private procurementProjectLotField As ProcurementProjectLotType - + Private evidenceDocumentReferenceField() As DocumentReferenceType - + Private taxTotalField() As TaxTotalType - + Private legalMonetaryTotalField As MonetaryTotalType - + Private tenderLineField() As TenderLineType - + Private awardingCriterionResponseField() As AwardingCriterionResponseType - + ''' - _ + Public Property VariantID() As VariantIDType Get Return Me.variantIDField @@ -29483,9 +29483,9 @@ Namespace Peppol.BISBilling30Invoice Me.variantIDField = value End Set End Property - + ''' - _ + Public Property FeeAmount() As FeeAmountType Get Return Me.feeAmountField @@ -29494,9 +29494,9 @@ Namespace Peppol.BISBilling30Invoice Me.feeAmountField = value End Set End Property - + ''' - _ + Public Property FeeDescription() As FeeDescriptionType() Get Return Me.feeDescriptionField @@ -29505,9 +29505,9 @@ Namespace Peppol.BISBilling30Invoice Me.feeDescriptionField = value End Set End Property - + ''' - _ + Public Property TenderEnvelopeID() As TenderEnvelopeIDType Get Return Me.tenderEnvelopeIDField @@ -29516,9 +29516,9 @@ Namespace Peppol.BISBilling30Invoice Me.tenderEnvelopeIDField = value End Set End Property - + ''' - _ + Public Property TenderEnvelopeTypeCode() As TenderEnvelopeTypeCodeType Get Return Me.tenderEnvelopeTypeCodeField @@ -29527,7 +29527,7 @@ Namespace Peppol.BISBilling30Invoice Me.tenderEnvelopeTypeCodeField = value End Set End Property - + ''' Public Property ProcurementProjectLot() As ProcurementProjectLotType Get @@ -29537,9 +29537,9 @@ Namespace Peppol.BISBilling30Invoice Me.procurementProjectLotField = value End Set End Property - + ''' - _ + Public Property EvidenceDocumentReference() As DocumentReferenceType() Get Return Me.evidenceDocumentReferenceField @@ -29548,9 +29548,9 @@ Namespace Peppol.BISBilling30Invoice Me.evidenceDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -29559,7 +29559,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' Public Property LegalMonetaryTotal() As MonetaryTotalType Get @@ -29569,9 +29569,9 @@ Namespace Peppol.BISBilling30Invoice Me.legalMonetaryTotalField = value End Set End Property - + ''' - _ + Public Property TenderLine() As TenderLineType() Get Return Me.tenderLineField @@ -29580,9 +29580,9 @@ Namespace Peppol.BISBilling30Invoice Me.tenderLineField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionResponse() As AwardingCriterionResponseType() Get Return Me.awardingCriterionResponseField @@ -29592,24 +29592,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ProcurementProjectLotType - + Private idField As IDType - + Private tenderingTermsField As TenderingTermsType - + Private procurementProjectField As ProcurementProjectType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -29618,7 +29618,7 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' Public Property TenderingTerms() As TenderingTermsType Get @@ -29628,7 +29628,7 @@ Namespace Peppol.BISBilling30Invoice Me.tenderingTermsField = value End Set End Property - + ''' Public Property ProcurementProject() As ProcurementProjectType Get @@ -29639,104 +29639,104 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderingTermsType - + Private awardingMethodTypeCodeField As AwardingMethodTypeCodeType - + Private priceEvaluationCodeField As PriceEvaluationCodeType - + Private maximumVariantQuantityField As MaximumVariantQuantityType - + Private variantConstraintIndicatorField As VariantConstraintIndicatorType - + Private acceptedVariantsDescriptionField() As AcceptedVariantsDescriptionType - + Private priceRevisionFormulaDescriptionField() As PriceRevisionFormulaDescriptionType - + Private fundingProgramCodeField As FundingProgramCodeType - + Private fundingProgramField() As FundingProgramType - + Private maximumAdvertisementAmountField As MaximumAdvertisementAmountType - + Private noteField() As NoteType - + Private paymentFrequencyCodeField As PaymentFrequencyCodeType - + Private economicOperatorRegistryURIField As EconomicOperatorRegistryURIType - + Private requiredCurriculaIndicatorField As RequiredCurriculaIndicatorType - + Private otherConditionsIndicatorField As OtherConditionsIndicatorType - + Private additionalConditionsField() As AdditionalConditionsType - + Private latestSecurityClearanceDateField As LatestSecurityClearanceDateType - + Private documentationFeeAmountField As DocumentationFeeAmountType - + Private penaltyClauseField() As ClauseType - + Private requiredFinancialGuaranteeField() As FinancialGuaranteeType - + Private procurementLegislationDocumentReferenceField As DocumentReferenceType - + Private fiscalLegislationDocumentReferenceField As DocumentReferenceType - + Private environmentalLegislationDocumentReferenceField As DocumentReferenceType - + Private employmentLegislationDocumentReferenceField As DocumentReferenceType - + Private contractualDocumentReferenceField() As DocumentReferenceType - + Private callForTendersDocumentReferenceField As DocumentReferenceType - + Private warrantyValidityPeriodField As PeriodType - + Private paymentTermsField() As PaymentTermsType - + Private tendererQualificationRequestField() As TendererQualificationRequestType - + Private allowedSubcontractTermsField() As SubcontractTermsType - + Private tenderPreparationField() As TenderPreparationType - + Private contractExecutionRequirementField() As ContractExecutionRequirementType - + Private awardingTermsField As AwardingTermsType - + Private additionalInformationPartyField As PartyType - + Private documentProviderPartyField As PartyType - + Private tenderRecipientPartyField As PartyType - + Private contractResponsiblePartyField As PartyType - + Private tenderEvaluationPartyField() As PartyType - + Private tenderValidityPeriodField As PeriodType - + Private contractAcceptancePeriodField As PeriodType - + Private appealTermsField As AppealTermsType - + Private languageField() As LanguageType - + Private budgetAccountLineField() As BudgetAccountLineType - + Private replacedNoticeDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property AwardingMethodTypeCode() As AwardingMethodTypeCodeType Get Return Me.awardingMethodTypeCodeField @@ -29745,9 +29745,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardingMethodTypeCodeField = value End Set End Property - + ''' - _ + Public Property PriceEvaluationCode() As PriceEvaluationCodeType Get Return Me.priceEvaluationCodeField @@ -29756,9 +29756,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceEvaluationCodeField = value End Set End Property - + ''' - _ + Public Property MaximumVariantQuantity() As MaximumVariantQuantityType Get Return Me.maximumVariantQuantityField @@ -29767,9 +29767,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumVariantQuantityField = value End Set End Property - + ''' - _ + Public Property VariantConstraintIndicator() As VariantConstraintIndicatorType Get Return Me.variantConstraintIndicatorField @@ -29778,9 +29778,9 @@ Namespace Peppol.BISBilling30Invoice Me.variantConstraintIndicatorField = value End Set End Property - + ''' - _ + Public Property AcceptedVariantsDescription() As AcceptedVariantsDescriptionType() Get Return Me.acceptedVariantsDescriptionField @@ -29789,9 +29789,9 @@ Namespace Peppol.BISBilling30Invoice Me.acceptedVariantsDescriptionField = value End Set End Property - + ''' - _ + Public Property PriceRevisionFormulaDescription() As PriceRevisionFormulaDescriptionType() Get Return Me.priceRevisionFormulaDescriptionField @@ -29800,9 +29800,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceRevisionFormulaDescriptionField = value End Set End Property - + ''' - _ + Public Property FundingProgramCode() As FundingProgramCodeType Get Return Me.fundingProgramCodeField @@ -29811,9 +29811,9 @@ Namespace Peppol.BISBilling30Invoice Me.fundingProgramCodeField = value End Set End Property - + ''' - _ + Public Property FundingProgram() As FundingProgramType() Get Return Me.fundingProgramField @@ -29822,9 +29822,9 @@ Namespace Peppol.BISBilling30Invoice Me.fundingProgramField = value End Set End Property - + ''' - _ + Public Property MaximumAdvertisementAmount() As MaximumAdvertisementAmountType Get Return Me.maximumAdvertisementAmountField @@ -29833,9 +29833,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumAdvertisementAmountField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -29844,9 +29844,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property PaymentFrequencyCode() As PaymentFrequencyCodeType Get Return Me.paymentFrequencyCodeField @@ -29855,9 +29855,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentFrequencyCodeField = value End Set End Property - + ''' - _ + Public Property EconomicOperatorRegistryURI() As EconomicOperatorRegistryURIType Get Return Me.economicOperatorRegistryURIField @@ -29866,9 +29866,9 @@ Namespace Peppol.BISBilling30Invoice Me.economicOperatorRegistryURIField = value End Set End Property - + ''' - _ + Public Property RequiredCurriculaIndicator() As RequiredCurriculaIndicatorType Get Return Me.requiredCurriculaIndicatorField @@ -29877,9 +29877,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredCurriculaIndicatorField = value End Set End Property - + ''' - _ + Public Property OtherConditionsIndicator() As OtherConditionsIndicatorType Get Return Me.otherConditionsIndicatorField @@ -29888,9 +29888,9 @@ Namespace Peppol.BISBilling30Invoice Me.otherConditionsIndicatorField = value End Set End Property - + ''' - _ + Public Property AdditionalConditions() As AdditionalConditionsType() Get Return Me.additionalConditionsField @@ -29899,9 +29899,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalConditionsField = value End Set End Property - + ''' - _ + Public Property LatestSecurityClearanceDate() As LatestSecurityClearanceDateType Get Return Me.latestSecurityClearanceDateField @@ -29910,9 +29910,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestSecurityClearanceDateField = value End Set End Property - + ''' - _ + Public Property DocumentationFeeAmount() As DocumentationFeeAmountType Get Return Me.documentationFeeAmountField @@ -29921,9 +29921,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentationFeeAmountField = value End Set End Property - + ''' - _ + Public Property PenaltyClause() As ClauseType() Get Return Me.penaltyClauseField @@ -29932,9 +29932,9 @@ Namespace Peppol.BISBilling30Invoice Me.penaltyClauseField = value End Set End Property - + ''' - _ + Public Property RequiredFinancialGuarantee() As FinancialGuaranteeType() Get Return Me.requiredFinancialGuaranteeField @@ -29943,7 +29943,7 @@ Namespace Peppol.BISBilling30Invoice Me.requiredFinancialGuaranteeField = value End Set End Property - + ''' Public Property ProcurementLegislationDocumentReference() As DocumentReferenceType Get @@ -29953,7 +29953,7 @@ Namespace Peppol.BISBilling30Invoice Me.procurementLegislationDocumentReferenceField = value End Set End Property - + ''' Public Property FiscalLegislationDocumentReference() As DocumentReferenceType Get @@ -29963,7 +29963,7 @@ Namespace Peppol.BISBilling30Invoice Me.fiscalLegislationDocumentReferenceField = value End Set End Property - + ''' Public Property EnvironmentalLegislationDocumentReference() As DocumentReferenceType Get @@ -29973,7 +29973,7 @@ Namespace Peppol.BISBilling30Invoice Me.environmentalLegislationDocumentReferenceField = value End Set End Property - + ''' Public Property EmploymentLegislationDocumentReference() As DocumentReferenceType Get @@ -29983,9 +29983,9 @@ Namespace Peppol.BISBilling30Invoice Me.employmentLegislationDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ContractualDocumentReference() As DocumentReferenceType() Get Return Me.contractualDocumentReferenceField @@ -29994,7 +29994,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractualDocumentReferenceField = value End Set End Property - + ''' Public Property CallForTendersDocumentReference() As DocumentReferenceType Get @@ -30004,7 +30004,7 @@ Namespace Peppol.BISBilling30Invoice Me.callForTendersDocumentReferenceField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -30014,9 +30014,9 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyValidityPeriodField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -30025,9 +30025,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property TendererQualificationRequest() As TendererQualificationRequestType() Get Return Me.tendererQualificationRequestField @@ -30036,9 +30036,9 @@ Namespace Peppol.BISBilling30Invoice Me.tendererQualificationRequestField = value End Set End Property - + ''' - _ + Public Property AllowedSubcontractTerms() As SubcontractTermsType() Get Return Me.allowedSubcontractTermsField @@ -30047,9 +30047,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowedSubcontractTermsField = value End Set End Property - + ''' - _ + Public Property TenderPreparation() As TenderPreparationType() Get Return Me.tenderPreparationField @@ -30058,9 +30058,9 @@ Namespace Peppol.BISBilling30Invoice Me.tenderPreparationField = value End Set End Property - + ''' - _ + Public Property ContractExecutionRequirement() As ContractExecutionRequirementType() Get Return Me.contractExecutionRequirementField @@ -30069,7 +30069,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractExecutionRequirementField = value End Set End Property - + ''' Public Property AwardingTerms() As AwardingTermsType Get @@ -30079,7 +30079,7 @@ Namespace Peppol.BISBilling30Invoice Me.awardingTermsField = value End Set End Property - + ''' Public Property AdditionalInformationParty() As PartyType Get @@ -30089,7 +30089,7 @@ Namespace Peppol.BISBilling30Invoice Me.additionalInformationPartyField = value End Set End Property - + ''' Public Property DocumentProviderParty() As PartyType Get @@ -30099,7 +30099,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentProviderPartyField = value End Set End Property - + ''' Public Property TenderRecipientParty() As PartyType Get @@ -30109,7 +30109,7 @@ Namespace Peppol.BISBilling30Invoice Me.tenderRecipientPartyField = value End Set End Property - + ''' Public Property ContractResponsibleParty() As PartyType Get @@ -30119,9 +30119,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractResponsiblePartyField = value End Set End Property - + ''' - _ + Public Property TenderEvaluationParty() As PartyType() Get Return Me.tenderEvaluationPartyField @@ -30130,7 +30130,7 @@ Namespace Peppol.BISBilling30Invoice Me.tenderEvaluationPartyField = value End Set End Property - + ''' Public Property TenderValidityPeriod() As PeriodType Get @@ -30140,7 +30140,7 @@ Namespace Peppol.BISBilling30Invoice Me.tenderValidityPeriodField = value End Set End Property - + ''' Public Property ContractAcceptancePeriod() As PeriodType Get @@ -30150,7 +30150,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractAcceptancePeriodField = value End Set End Property - + ''' Public Property AppealTerms() As AppealTermsType Get @@ -30160,9 +30160,9 @@ Namespace Peppol.BISBilling30Invoice Me.appealTermsField = value End Set End Property - + ''' - _ + Public Property Language() As LanguageType() Get Return Me.languageField @@ -30171,9 +30171,9 @@ Namespace Peppol.BISBilling30Invoice Me.languageField = value End Set End Property - + ''' - _ + Public Property BudgetAccountLine() As BudgetAccountLineType() Get Return Me.budgetAccountLineField @@ -30182,7 +30182,7 @@ Namespace Peppol.BISBilling30Invoice Me.budgetAccountLineField = value End Set End Property - + ''' Public Property ReplacedNoticeDocumentReference() As DocumentReferenceType Get @@ -30193,28 +30193,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class FinancialGuaranteeType - + Private guaranteeTypeCodeField As GuaranteeTypeCodeType - + Private descriptionField() As DescriptionType - + Private liabilityAmountField As LiabilityAmountType - + Private amountRateField As AmountRateType - + Private constitutionPeriodField As PeriodType - + ''' - _ + Public Property GuaranteeTypeCode() As GuaranteeTypeCodeType Get Return Me.guaranteeTypeCodeField @@ -30223,9 +30223,9 @@ Namespace Peppol.BISBilling30Invoice Me.guaranteeTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30234,9 +30234,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property LiabilityAmount() As LiabilityAmountType Get Return Me.liabilityAmountField @@ -30245,9 +30245,9 @@ Namespace Peppol.BISBilling30Invoice Me.liabilityAmountField = value End Set End Property - + ''' - _ + Public Property AmountRate() As AmountRateType Get Return Me.amountRateField @@ -30256,7 +30256,7 @@ Namespace Peppol.BISBilling30Invoice Me.amountRateField = value End Set End Property - + ''' Public Property ConstitutionPeriod() As PeriodType Get @@ -30267,40 +30267,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TendererQualificationRequestType - + Private companyLegalFormCodeField As CompanyLegalFormCodeType - + Private companyLegalFormField As CompanyLegalFormType - + Private personalSituationField() As PersonalSituationType - + Private operatingYearsQuantityField As OperatingYearsQuantityType - + Private employeeQuantityField As EmployeeQuantityType - + Private descriptionField() As DescriptionType - + Private requiredBusinessClassificationSchemeField() As ClassificationSchemeType - + Private technicalEvaluationCriterionField() As EvaluationCriterionType - + Private financialEvaluationCriterionField() As EvaluationCriterionType - + Private specificTendererRequirementField() As TendererRequirementType - + Private economicOperatorRoleField() As EconomicOperatorRoleType - + ''' - _ + Public Property CompanyLegalFormCode() As CompanyLegalFormCodeType Get Return Me.companyLegalFormCodeField @@ -30309,9 +30309,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyLegalFormCodeField = value End Set End Property - + ''' - _ + Public Property CompanyLegalForm() As CompanyLegalFormType Get Return Me.companyLegalFormField @@ -30320,9 +30320,9 @@ Namespace Peppol.BISBilling30Invoice Me.companyLegalFormField = value End Set End Property - + ''' - _ + Public Property PersonalSituation() As PersonalSituationType() Get Return Me.personalSituationField @@ -30331,9 +30331,9 @@ Namespace Peppol.BISBilling30Invoice Me.personalSituationField = value End Set End Property - + ''' - _ + Public Property OperatingYearsQuantity() As OperatingYearsQuantityType Get Return Me.operatingYearsQuantityField @@ -30342,9 +30342,9 @@ Namespace Peppol.BISBilling30Invoice Me.operatingYearsQuantityField = value End Set End Property - + ''' - _ + Public Property EmployeeQuantity() As EmployeeQuantityType Get Return Me.employeeQuantityField @@ -30353,9 +30353,9 @@ Namespace Peppol.BISBilling30Invoice Me.employeeQuantityField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30364,9 +30364,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property RequiredBusinessClassificationScheme() As ClassificationSchemeType() Get Return Me.requiredBusinessClassificationSchemeField @@ -30375,9 +30375,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredBusinessClassificationSchemeField = value End Set End Property - + ''' - _ + Public Property TechnicalEvaluationCriterion() As EvaluationCriterionType() Get Return Me.technicalEvaluationCriterionField @@ -30386,9 +30386,9 @@ Namespace Peppol.BISBilling30Invoice Me.technicalEvaluationCriterionField = value End Set End Property - + ''' - _ + Public Property FinancialEvaluationCriterion() As EvaluationCriterionType() Get Return Me.financialEvaluationCriterionField @@ -30397,9 +30397,9 @@ Namespace Peppol.BISBilling30Invoice Me.financialEvaluationCriterionField = value End Set End Property - + ''' - _ + Public Property SpecificTendererRequirement() As TendererRequirementType() Get Return Me.specificTendererRequirementField @@ -30408,9 +30408,9 @@ Namespace Peppol.BISBilling30Invoice Me.specificTendererRequirementField = value End Set End Property - + ''' - _ + Public Property EconomicOperatorRole() As EconomicOperatorRoleType() Get Return Me.economicOperatorRoleField @@ -30420,34 +30420,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EvaluationCriterionType - + Private evaluationCriterionTypeCodeField As EvaluationCriterionTypeCodeType - + Private descriptionField() As DescriptionType - + Private thresholdAmountField As ThresholdAmountType - + Private thresholdQuantityField As ThresholdQuantityType - + Private expressionCodeField As ExpressionCodeType - + Private expressionField() As ExpressionType - + Private durationPeriodField As PeriodType - + Private suggestedEvidenceField() As EvidenceType - + ''' - _ + Public Property EvaluationCriterionTypeCode() As EvaluationCriterionTypeCodeType Get Return Me.evaluationCriterionTypeCodeField @@ -30456,9 +30456,9 @@ Namespace Peppol.BISBilling30Invoice Me.evaluationCriterionTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30467,9 +30467,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ThresholdAmount() As ThresholdAmountType Get Return Me.thresholdAmountField @@ -30478,9 +30478,9 @@ Namespace Peppol.BISBilling30Invoice Me.thresholdAmountField = value End Set End Property - + ''' - _ + Public Property ThresholdQuantity() As ThresholdQuantityType Get Return Me.thresholdQuantityField @@ -30489,9 +30489,9 @@ Namespace Peppol.BISBilling30Invoice Me.thresholdQuantityField = value End Set End Property - + ''' - _ + Public Property ExpressionCode() As ExpressionCodeType Get Return Me.expressionCodeField @@ -30500,9 +30500,9 @@ Namespace Peppol.BISBilling30Invoice Me.expressionCodeField = value End Set End Property - + ''' - _ + Public Property Expression() As ExpressionType() Get Return Me.expressionField @@ -30511,7 +30511,7 @@ Namespace Peppol.BISBilling30Invoice Me.expressionField = value End Set End Property - + ''' Public Property DurationPeriod() As PeriodType Get @@ -30521,9 +30521,9 @@ Namespace Peppol.BISBilling30Invoice Me.durationPeriodField = value End Set End Property - + ''' - _ + Public Property SuggestedEvidence() As EvidenceType() Get Return Me.suggestedEvidenceField @@ -30533,32 +30533,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EvidenceType - + Private idField As IDType - + Private evidenceTypeCodeField As EvidenceTypeCodeType - + Private descriptionField() As DescriptionType - + Private candidateStatementField() As CandidateStatementType - + Private evidenceIssuingPartyField As PartyType - + Private documentReferenceField As DocumentReferenceType - + Private languageField As LanguageType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -30567,9 +30567,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property EvidenceTypeCode() As EvidenceTypeCodeType Get Return Me.evidenceTypeCodeField @@ -30578,9 +30578,9 @@ Namespace Peppol.BISBilling30Invoice Me.evidenceTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30589,9 +30589,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CandidateStatement() As CandidateStatementType() Get Return Me.candidateStatementField @@ -30600,7 +30600,7 @@ Namespace Peppol.BISBilling30Invoice Me.candidateStatementField = value End Set End Property - + ''' Public Property EvidenceIssuingParty() As PartyType Get @@ -30610,7 +30610,7 @@ Namespace Peppol.BISBilling30Invoice Me.evidenceIssuingPartyField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -30620,7 +30620,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property Language() As LanguageType Get @@ -30631,28 +30631,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TendererRequirementType - + Private nameField() As NameType1 - + Private tendererRequirementTypeCodeField As TendererRequirementTypeCodeType - + Private descriptionField() As DescriptionType - + Private legalReferenceField As LegalReferenceType - + Private suggestedEvidenceField() As EvidenceType - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -30661,9 +30661,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property TendererRequirementTypeCode() As TendererRequirementTypeCodeType Get Return Me.tendererRequirementTypeCodeField @@ -30672,9 +30672,9 @@ Namespace Peppol.BISBilling30Invoice Me.tendererRequirementTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30683,9 +30683,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property LegalReference() As LegalReferenceType Get Return Me.legalReferenceField @@ -30694,9 +30694,9 @@ Namespace Peppol.BISBilling30Invoice Me.legalReferenceField = value End Set End Property - + ''' - _ + Public Property SuggestedEvidence() As EvidenceType() Get Return Me.suggestedEvidenceField @@ -30706,30 +30706,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderPreparationType - + Private tenderEnvelopeIDField As TenderEnvelopeIDType - + Private tenderEnvelopeTypeCodeField As TenderEnvelopeTypeCodeType - + Private descriptionField() As DescriptionType - + Private openTenderIDField As OpenTenderIDType - + Private procurementProjectLotField() As ProcurementProjectLotType - + Private documentTenderRequirementField() As TenderRequirementType - + ''' - _ + Public Property TenderEnvelopeID() As TenderEnvelopeIDType Get Return Me.tenderEnvelopeIDField @@ -30738,9 +30738,9 @@ Namespace Peppol.BISBilling30Invoice Me.tenderEnvelopeIDField = value End Set End Property - + ''' - _ + Public Property TenderEnvelopeTypeCode() As TenderEnvelopeTypeCodeType Get Return Me.tenderEnvelopeTypeCodeField @@ -30749,9 +30749,9 @@ Namespace Peppol.BISBilling30Invoice Me.tenderEnvelopeTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30760,9 +30760,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property OpenTenderID() As OpenTenderIDType Get Return Me.openTenderIDField @@ -30771,9 +30771,9 @@ Namespace Peppol.BISBilling30Invoice Me.openTenderIDField = value End Set End Property - + ''' - _ + Public Property ProcurementProjectLot() As ProcurementProjectLotType() Get Return Me.procurementProjectLotField @@ -30782,9 +30782,9 @@ Namespace Peppol.BISBilling30Invoice Me.procurementProjectLotField = value End Set End Property - + ''' - _ + Public Property DocumentTenderRequirement() As TenderRequirementType() Get Return Me.documentTenderRequirementField @@ -30794,24 +30794,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderRequirementType - + Private nameField As NameType1 - + Private descriptionField() As DescriptionType - + Private templateDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -30820,9 +30820,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30831,7 +30831,7 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' Public Property TemplateDocumentReference() As DocumentReferenceType Get @@ -30842,24 +30842,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContractExecutionRequirementType - + Private nameField() As NameType1 - + Private executionRequirementCodeField As ExecutionRequirementCodeType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -30868,9 +30868,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property ExecutionRequirementCode() As ExecutionRequirementCodeType Get Return Me.executionRequirementCodeField @@ -30879,9 +30879,9 @@ Namespace Peppol.BISBilling30Invoice Me.executionRequirementCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30891,40 +30891,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AwardingTermsType - + Private weightingAlgorithmCodeField As WeightingAlgorithmCodeType - + Private descriptionField() As DescriptionType - + Private technicalCommitteeDescriptionField() As TechnicalCommitteeDescriptionType - + Private lowTendersDescriptionField() As LowTendersDescriptionType - + Private prizeIndicatorField As PrizeIndicatorType - + Private prizeDescriptionField() As PrizeDescriptionType - + Private paymentDescriptionField() As PaymentDescriptionType - + Private followupContractIndicatorField As FollowupContractIndicatorType - + Private bindingOnBuyerIndicatorField As BindingOnBuyerIndicatorType - + Private awardingCriterionField() As AwardingCriterionType - + Private technicalCommitteePersonField() As PersonType - + ''' - _ + Public Property WeightingAlgorithmCode() As WeightingAlgorithmCodeType Get Return Me.weightingAlgorithmCodeField @@ -30933,9 +30933,9 @@ Namespace Peppol.BISBilling30Invoice Me.weightingAlgorithmCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -30944,9 +30944,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property TechnicalCommitteeDescription() As TechnicalCommitteeDescriptionType() Get Return Me.technicalCommitteeDescriptionField @@ -30955,9 +30955,9 @@ Namespace Peppol.BISBilling30Invoice Me.technicalCommitteeDescriptionField = value End Set End Property - + ''' - _ + Public Property LowTendersDescription() As LowTendersDescriptionType() Get Return Me.lowTendersDescriptionField @@ -30966,9 +30966,9 @@ Namespace Peppol.BISBilling30Invoice Me.lowTendersDescriptionField = value End Set End Property - + ''' - _ + Public Property PrizeIndicator() As PrizeIndicatorType Get Return Me.prizeIndicatorField @@ -30977,9 +30977,9 @@ Namespace Peppol.BISBilling30Invoice Me.prizeIndicatorField = value End Set End Property - + ''' - _ + Public Property PrizeDescription() As PrizeDescriptionType() Get Return Me.prizeDescriptionField @@ -30988,9 +30988,9 @@ Namespace Peppol.BISBilling30Invoice Me.prizeDescriptionField = value End Set End Property - + ''' - _ + Public Property PaymentDescription() As PaymentDescriptionType() Get Return Me.paymentDescriptionField @@ -30999,9 +30999,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentDescriptionField = value End Set End Property - + ''' - _ + Public Property FollowupContractIndicator() As FollowupContractIndicatorType Get Return Me.followupContractIndicatorField @@ -31010,9 +31010,9 @@ Namespace Peppol.BISBilling30Invoice Me.followupContractIndicatorField = value End Set End Property - + ''' - _ + Public Property BindingOnBuyerIndicator() As BindingOnBuyerIndicatorType Get Return Me.bindingOnBuyerIndicatorField @@ -31021,9 +31021,9 @@ Namespace Peppol.BISBilling30Invoice Me.bindingOnBuyerIndicatorField = value End Set End Property - + ''' - _ + Public Property AwardingCriterion() As AwardingCriterionType() Get Return Me.awardingCriterionField @@ -31032,9 +31032,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardingCriterionField = value End Set End Property - + ''' - _ + Public Property TechnicalCommitteePerson() As PersonType() Get Return Me.technicalCommitteePersonField @@ -31044,44 +31044,44 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AwardingCriterionType - + Private idField As IDType - + Private awardingCriterionTypeCodeField As AwardingCriterionTypeCodeType - + Private descriptionField() As DescriptionType - + Private weightNumericField As WeightNumericType - + Private weightField() As WeightType - + Private calculationExpressionField() As CalculationExpressionType - + Private calculationExpressionCodeField As CalculationExpressionCodeType - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private minimumAmountField As MinimumAmountType - + Private maximumAmountField As MaximumAmountType - + Private minimumImprovementBidField() As MinimumImprovementBidType - + Private subordinateAwardingCriterionField() As AwardingCriterionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31090,9 +31090,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionTypeCode() As AwardingCriterionTypeCodeType Get Return Me.awardingCriterionTypeCodeField @@ -31101,9 +31101,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardingCriterionTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -31112,9 +31112,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property WeightNumeric() As WeightNumericType Get Return Me.weightNumericField @@ -31123,9 +31123,9 @@ Namespace Peppol.BISBilling30Invoice Me.weightNumericField = value End Set End Property - + ''' - _ + Public Property Weight() As WeightType() Get Return Me.weightField @@ -31134,9 +31134,9 @@ Namespace Peppol.BISBilling30Invoice Me.weightField = value End Set End Property - + ''' - _ + Public Property CalculationExpression() As CalculationExpressionType() Get Return Me.calculationExpressionField @@ -31145,9 +31145,9 @@ Namespace Peppol.BISBilling30Invoice Me.calculationExpressionField = value End Set End Property - + ''' - _ + Public Property CalculationExpressionCode() As CalculationExpressionCodeType Get Return Me.calculationExpressionCodeField @@ -31156,9 +31156,9 @@ Namespace Peppol.BISBilling30Invoice Me.calculationExpressionCodeField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -31167,9 +31167,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -31178,9 +31178,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property MinimumAmount() As MinimumAmountType Get Return Me.minimumAmountField @@ -31189,9 +31189,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumAmountField = value End Set End Property - + ''' - _ + Public Property MaximumAmount() As MaximumAmountType Get Return Me.maximumAmountField @@ -31200,9 +31200,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumAmountField = value End Set End Property - + ''' - _ + Public Property MinimumImprovementBid() As MinimumImprovementBidType() Get Return Me.minimumImprovementBidField @@ -31211,9 +31211,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumImprovementBidField = value End Set End Property - + ''' - _ + Public Property SubordinateAwardingCriterion() As AwardingCriterionType() Get Return Me.subordinateAwardingCriterionField @@ -31223,24 +31223,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class BudgetAccountLineType - + Private idField As IDType - + Private totalAmountField As TotalAmountType - + Private budgetAccountField() As BudgetAccountType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31249,9 +31249,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property TotalAmount() As TotalAmountType Get Return Me.totalAmountField @@ -31260,9 +31260,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalAmountField = value End Set End Property - + ''' - _ + Public Property BudgetAccount() As BudgetAccountType() Get Return Me.budgetAccountField @@ -31272,24 +31272,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class BudgetAccountType - + Private idField As IDType - + Private budgetYearNumericField As BudgetYearNumericType - + Private requiredClassificationSchemeField As ClassificationSchemeType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31298,9 +31298,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property BudgetYearNumeric() As BudgetYearNumericType Get Return Me.budgetYearNumericField @@ -31309,7 +31309,7 @@ Namespace Peppol.BISBilling30Invoice Me.budgetYearNumericField = value End Set End Property - + ''' Public Property RequiredClassificationScheme() As ClassificationSchemeType Get @@ -31320,54 +31320,54 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ProcurementProjectType - + Private idField As IDType - + Private nameField() As NameType1 - + Private descriptionField() As DescriptionType - + Private procurementTypeCodeField As ProcurementTypeCodeType - + Private procurementSubTypeCodeField As ProcurementSubTypeCodeType - + Private qualityControlCodeField As QualityControlCodeType - + Private requiredFeeAmountField As RequiredFeeAmountType - + Private feeDescriptionField() As FeeDescriptionType - + Private requestedDeliveryDateField As RequestedDeliveryDateType - + Private estimatedOverallContractQuantityField As EstimatedOverallContractQuantityType - + Private noteField() As NoteType - + Private requestedTenderTotalField As RequestedTenderTotalType - + Private mainCommodityClassificationField As CommodityClassificationType - + Private additionalCommodityClassificationField() As CommodityClassificationType - + Private realizedLocationField() As LocationType1 - + Private plannedPeriodField As PeriodType - + Private contractExtensionField As ContractExtensionType - + Private requestForTenderLineField() As RequestForTenderLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31376,9 +31376,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1() Get Return Me.nameField @@ -31387,9 +31387,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -31398,9 +31398,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ProcurementTypeCode() As ProcurementTypeCodeType Get Return Me.procurementTypeCodeField @@ -31409,9 +31409,9 @@ Namespace Peppol.BISBilling30Invoice Me.procurementTypeCodeField = value End Set End Property - + ''' - _ + Public Property ProcurementSubTypeCode() As ProcurementSubTypeCodeType Get Return Me.procurementSubTypeCodeField @@ -31420,9 +31420,9 @@ Namespace Peppol.BISBilling30Invoice Me.procurementSubTypeCodeField = value End Set End Property - + ''' - _ + Public Property QualityControlCode() As QualityControlCodeType Get Return Me.qualityControlCodeField @@ -31431,9 +31431,9 @@ Namespace Peppol.BISBilling30Invoice Me.qualityControlCodeField = value End Set End Property - + ''' - _ + Public Property RequiredFeeAmount() As RequiredFeeAmountType Get Return Me.requiredFeeAmountField @@ -31442,9 +31442,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredFeeAmountField = value End Set End Property - + ''' - _ + Public Property FeeDescription() As FeeDescriptionType() Get Return Me.feeDescriptionField @@ -31453,9 +31453,9 @@ Namespace Peppol.BISBilling30Invoice Me.feeDescriptionField = value End Set End Property - + ''' - _ + Public Property RequestedDeliveryDate() As RequestedDeliveryDateType Get Return Me.requestedDeliveryDateField @@ -31464,9 +31464,9 @@ Namespace Peppol.BISBilling30Invoice Me.requestedDeliveryDateField = value End Set End Property - + ''' - _ + Public Property EstimatedOverallContractQuantity() As EstimatedOverallContractQuantityType Get Return Me.estimatedOverallContractQuantityField @@ -31475,9 +31475,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedOverallContractQuantityField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -31486,7 +31486,7 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' Public Property RequestedTenderTotal() As RequestedTenderTotalType Get @@ -31496,7 +31496,7 @@ Namespace Peppol.BISBilling30Invoice Me.requestedTenderTotalField = value End Set End Property - + ''' Public Property MainCommodityClassification() As CommodityClassificationType Get @@ -31506,9 +31506,9 @@ Namespace Peppol.BISBilling30Invoice Me.mainCommodityClassificationField = value End Set End Property - + ''' - _ + Public Property AdditionalCommodityClassification() As CommodityClassificationType() Get Return Me.additionalCommodityClassificationField @@ -31517,9 +31517,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalCommodityClassificationField = value End Set End Property - + ''' - _ + Public Property RealizedLocation() As LocationType1() Get Return Me.realizedLocationField @@ -31528,7 +31528,7 @@ Namespace Peppol.BISBilling30Invoice Me.realizedLocationField = value End Set End Property - + ''' Public Property PlannedPeriod() As PeriodType Get @@ -31538,7 +31538,7 @@ Namespace Peppol.BISBilling30Invoice Me.plannedPeriodField = value End Set End Property - + ''' Public Property ContractExtension() As ContractExtensionType Get @@ -31548,9 +31548,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractExtensionField = value End Set End Property - + ''' - _ + Public Property RequestForTenderLine() As RequestForTenderLineType() Get Return Me.requestForTenderLineField @@ -31560,34 +31560,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RequestedTenderTotalType - + Private estimatedOverallContractAmountField As EstimatedOverallContractAmountType - + Private totalAmountField As TotalAmountType - + Private taxIncludedIndicatorField As TaxIncludedIndicatorType - + Private minimumAmountField As MinimumAmountType - + Private maximumAmountField As MaximumAmountType - + Private monetaryScopeField() As MonetaryScopeType - + Private averageSubsequentContractAmountField As AverageSubsequentContractAmountType - + Private applicableTaxCategoryField() As TaxCategoryType - + ''' - _ + Public Property EstimatedOverallContractAmount() As EstimatedOverallContractAmountType Get Return Me.estimatedOverallContractAmountField @@ -31596,9 +31596,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedOverallContractAmountField = value End Set End Property - + ''' - _ + Public Property TotalAmount() As TotalAmountType Get Return Me.totalAmountField @@ -31607,9 +31607,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalAmountField = value End Set End Property - + ''' - _ + Public Property TaxIncludedIndicator() As TaxIncludedIndicatorType Get Return Me.taxIncludedIndicatorField @@ -31618,9 +31618,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxIncludedIndicatorField = value End Set End Property - + ''' - _ + Public Property MinimumAmount() As MinimumAmountType Get Return Me.minimumAmountField @@ -31629,9 +31629,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumAmountField = value End Set End Property - + ''' - _ + Public Property MaximumAmount() As MaximumAmountType Get Return Me.maximumAmountField @@ -31640,9 +31640,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumAmountField = value End Set End Property - + ''' - _ + Public Property MonetaryScope() As MonetaryScopeType() Get Return Me.monetaryScopeField @@ -31651,9 +31651,9 @@ Namespace Peppol.BISBilling30Invoice Me.monetaryScopeField = value End Set End Property - + ''' - _ + Public Property AverageSubsequentContractAmount() As AverageSubsequentContractAmountType Get Return Me.averageSubsequentContractAmountField @@ -31662,9 +31662,9 @@ Namespace Peppol.BISBilling30Invoice Me.averageSubsequentContractAmountField = value End Set End Property - + ''' - _ + Public Property ApplicableTaxCategory() As TaxCategoryType() Get Return Me.applicableTaxCategoryField @@ -31674,28 +31674,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContractExtensionType - + Private optionsDescriptionField() As OptionsDescriptionType - + Private minimumNumberNumericField As MinimumNumberNumericType - + Private maximumNumberNumericField As MaximumNumberNumericType - + Private optionValidityPeriodField As PeriodType - + Private renewalField() As RenewalType - + ''' - _ + Public Property OptionsDescription() As OptionsDescriptionType() Get Return Me.optionsDescriptionField @@ -31704,9 +31704,9 @@ Namespace Peppol.BISBilling30Invoice Me.optionsDescriptionField = value End Set End Property - + ''' - _ + Public Property MinimumNumberNumeric() As MinimumNumberNumericType Get Return Me.minimumNumberNumericField @@ -31715,9 +31715,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumNumberNumericField = value End Set End Property - + ''' - _ + Public Property MaximumNumberNumeric() As MaximumNumberNumericType Get Return Me.maximumNumberNumericField @@ -31726,7 +31726,7 @@ Namespace Peppol.BISBilling30Invoice Me.maximumNumberNumericField = value End Set End Property - + ''' Public Property OptionValidityPeriod() As PeriodType Get @@ -31736,9 +31736,9 @@ Namespace Peppol.BISBilling30Invoice Me.optionValidityPeriodField = value End Set End Property - + ''' - _ + Public Property Renewal() As RenewalType() Get Return Me.renewalField @@ -31748,22 +31748,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RenewalType - + Private amountField As AmountType2 - + Private periodField As PeriodType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -31772,7 +31772,7 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -31783,50 +31783,50 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RequestForTenderLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private minimumQuantityField As MinimumQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private taxIncludedIndicatorField As TaxIncludedIndicatorType - + Private minimumAmountField As MinimumAmountType - + Private maximumAmountField As MaximumAmountType - + Private estimatedAmountField As EstimatedAmountType - + Private documentReferenceField() As DocumentReferenceType - + Private deliveryPeriodField() As PeriodType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + Private warrantyValidityPeriodField As PeriodType - + Private itemField As ItemType - + Private subRequestForTenderLineField() As RequestForTenderLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -31835,9 +31835,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -31846,9 +31846,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -31857,9 +31857,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -31868,9 +31868,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -31879,9 +31879,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -31890,9 +31890,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property TaxIncludedIndicator() As TaxIncludedIndicatorType Get Return Me.taxIncludedIndicatorField @@ -31901,9 +31901,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxIncludedIndicatorField = value End Set End Property - + ''' - _ + Public Property MinimumAmount() As MinimumAmountType Get Return Me.minimumAmountField @@ -31912,9 +31912,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumAmountField = value End Set End Property - + ''' - _ + Public Property MaximumAmount() As MaximumAmountType Get Return Me.maximumAmountField @@ -31923,9 +31923,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumAmountField = value End Set End Property - + ''' - _ + Public Property EstimatedAmount() As EstimatedAmountType Get Return Me.estimatedAmountField @@ -31934,9 +31934,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedAmountField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -31945,9 +31945,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property DeliveryPeriod() As PeriodType() Get Return Me.deliveryPeriodField @@ -31956,9 +31956,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryPeriodField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -31967,7 +31967,7 @@ Namespace Peppol.BISBilling30Invoice Me.requiredItemLocationQuantityField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -31977,7 +31977,7 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyValidityPeriodField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -31987,9 +31987,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property SubRequestForTenderLine() As RequestForTenderLineType() Get Return Me.subRequestForTenderLineField @@ -31999,60 +31999,60 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private lineExtensionAmountField As LineExtensionAmountType - + Private totalTaxAmountField As TotalTaxAmountType - + Private orderableUnitField As OrderableUnitType - + Private contentUnitQuantityField As ContentUnitQuantityType - + Private orderQuantityIncrementNumericField As OrderQuantityIncrementNumericType - + Private minimumOrderQuantityField As MinimumOrderQuantityType - + Private maximumOrderQuantityField As MaximumOrderQuantityType - + Private warrantyInformationField() As WarrantyInformationType - + Private packLevelCodeField As PackLevelCodeType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField As ItemType - + Private offeredItemLocationQuantityField() As ItemLocationQuantityType - + Private replacementRelatedItemField() As RelatedItemType - + Private warrantyPartyField As PartyType - + Private warrantyValidityPeriodField As PeriodType - + Private subTenderLineField() As TenderLineType - + Private callForTendersLineReferenceField As LineReferenceType - + Private callForTendersDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32061,9 +32061,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -32072,9 +32072,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -32083,9 +32083,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -32094,9 +32094,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaxAmount() As TotalTaxAmountType Get Return Me.totalTaxAmountField @@ -32105,9 +32105,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalTaxAmountField = value End Set End Property - + ''' - _ + Public Property OrderableUnit() As OrderableUnitType Get Return Me.orderableUnitField @@ -32116,9 +32116,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderableUnitField = value End Set End Property - + ''' - _ + Public Property ContentUnitQuantity() As ContentUnitQuantityType Get Return Me.contentUnitQuantityField @@ -32127,9 +32127,9 @@ Namespace Peppol.BISBilling30Invoice Me.contentUnitQuantityField = value End Set End Property - + ''' - _ + Public Property OrderQuantityIncrementNumeric() As OrderQuantityIncrementNumericType Get Return Me.orderQuantityIncrementNumericField @@ -32138,9 +32138,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderQuantityIncrementNumericField = value End Set End Property - + ''' - _ + Public Property MinimumOrderQuantity() As MinimumOrderQuantityType Get Return Me.minimumOrderQuantityField @@ -32149,9 +32149,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumOrderQuantity() As MaximumOrderQuantityType Get Return Me.maximumOrderQuantityField @@ -32160,9 +32160,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property WarrantyInformation() As WarrantyInformationType() Get Return Me.warrantyInformationField @@ -32171,9 +32171,9 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyInformationField = value End Set End Property - + ''' - _ + Public Property PackLevelCode() As PackLevelCodeType Get Return Me.packLevelCodeField @@ -32182,9 +32182,9 @@ Namespace Peppol.BISBilling30Invoice Me.packLevelCodeField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -32193,7 +32193,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -32203,9 +32203,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property OfferedItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.offeredItemLocationQuantityField @@ -32214,9 +32214,9 @@ Namespace Peppol.BISBilling30Invoice Me.offeredItemLocationQuantityField = value End Set End Property - + ''' - _ + Public Property ReplacementRelatedItem() As RelatedItemType() Get Return Me.replacementRelatedItemField @@ -32225,7 +32225,7 @@ Namespace Peppol.BISBilling30Invoice Me.replacementRelatedItemField = value End Set End Property - + ''' Public Property WarrantyParty() As PartyType Get @@ -32235,7 +32235,7 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyPartyField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -32245,9 +32245,9 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyValidityPeriodField = value End Set End Property - + ''' - _ + Public Property SubTenderLine() As TenderLineType() Get Return Me.subTenderLineField @@ -32256,7 +32256,7 @@ Namespace Peppol.BISBilling30Invoice Me.subTenderLineField = value End Set End Property - + ''' Public Property CallForTendersLineReference() As LineReferenceType Get @@ -32266,7 +32266,7 @@ Namespace Peppol.BISBilling30Invoice Me.callForTendersLineReferenceField = value End Set End Property - + ''' Public Property CallForTendersDocumentReference() As DocumentReferenceType Get @@ -32277,32 +32277,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class AwardingCriterionResponseType - + Private idField As IDType - + Private awardingCriterionIDField As AwardingCriterionIDType - + Private awardingCriterionDescriptionField() As AwardingCriterionDescriptionType - + Private descriptionField() As DescriptionType - + Private quantityField As QuantityType2 - + Private amountField As AmountType2 - + Private subordinateAwardingCriterionResponseField() As AwardingCriterionResponseType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32311,9 +32311,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionID() As AwardingCriterionIDType Get Return Me.awardingCriterionIDField @@ -32322,9 +32322,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardingCriterionIDField = value End Set End Property - + ''' - _ + Public Property AwardingCriterionDescription() As AwardingCriterionDescriptionType() Get Return Me.awardingCriterionDescriptionField @@ -32333,9 +32333,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardingCriterionDescriptionField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -32344,9 +32344,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -32355,9 +32355,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -32366,9 +32366,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property SubordinateAwardingCriterionResponse() As AwardingCriterionResponseType() Get Return Me.subordinateAwardingCriterionResponseField @@ -32378,26 +32378,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DutyType1 - + Private amountField As AmountType2 - + Private dutyField As DutyType - + Private dutyCodeField As DutyCodeType - + Private taxCategoryField As TaxCategoryType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -32406,9 +32406,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property Duty() As DutyType Get Return Me.dutyField @@ -32417,9 +32417,9 @@ Namespace Peppol.BISBilling30Invoice Me.dutyField = value End Set End Property - + ''' - _ + Public Property DutyCode() As DutyCodeType Get Return Me.dutyCodeField @@ -32428,7 +32428,7 @@ Namespace Peppol.BISBilling30Invoice Me.dutyCodeField = value End Set End Property - + ''' Public Property TaxCategory() As TaxCategoryType Get @@ -32439,26 +32439,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueItemSpecificationUpdateLineType - + Private idField As IDType - + Private contractorCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32467,7 +32467,7 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' Public Property ContractorCustomerParty() As CustomerPartyType Get @@ -32477,7 +32477,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractorCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -32487,7 +32487,7 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -32498,80 +32498,80 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueLineType - + Private idField As IDType - + Private actionCodeField As ActionCodeType - + Private lifeCycleStatusCodeField As LifeCycleStatusCodeType - + Private contractSubdivisionField As ContractSubdivisionType - + Private noteField() As NoteType - + Private orderableIndicatorField As OrderableIndicatorType - + Private orderableUnitField As OrderableUnitType - + Private contentUnitQuantityField As ContentUnitQuantityType - + Private orderQuantityIncrementNumericField As OrderQuantityIncrementNumericType - + Private minimumOrderQuantityField As MinimumOrderQuantityType - + Private maximumOrderQuantityField As MaximumOrderQuantityType - + Private warrantyInformationField() As WarrantyInformationType - + Private packLevelCodeField As PackLevelCodeType - + Private contractorCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private warrantyPartyField As PartyType - + Private warrantyValidityPeriodField As PeriodType - + Private lineValidityPeriodField As PeriodType - + Private itemComparisonField() As ItemComparisonType - + Private componentRelatedItemField() As RelatedItemType - + Private accessoryRelatedItemField() As RelatedItemType - + Private requiredRelatedItemField() As RelatedItemType - + Private replacementRelatedItemField() As RelatedItemType - + Private complementaryRelatedItemField() As RelatedItemType - + Private replacedRelatedItemField() As RelatedItemType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + Private documentReferenceField() As DocumentReferenceType - + Private itemField As ItemType - + Private keywordItemPropertyField() As ItemPropertyType - + Private callForTendersLineReferenceField As LineReferenceType - + Private callForTendersDocumentReferenceField As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32580,9 +32580,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ActionCode() As ActionCodeType Get Return Me.actionCodeField @@ -32591,9 +32591,9 @@ Namespace Peppol.BISBilling30Invoice Me.actionCodeField = value End Set End Property - + ''' - _ + Public Property LifeCycleStatusCode() As LifeCycleStatusCodeType Get Return Me.lifeCycleStatusCodeField @@ -32602,9 +32602,9 @@ Namespace Peppol.BISBilling30Invoice Me.lifeCycleStatusCodeField = value End Set End Property - + ''' - _ + Public Property ContractSubdivision() As ContractSubdivisionType Get Return Me.contractSubdivisionField @@ -32613,9 +32613,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractSubdivisionField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -32624,9 +32624,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property OrderableIndicator() As OrderableIndicatorType Get Return Me.orderableIndicatorField @@ -32635,9 +32635,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderableIndicatorField = value End Set End Property - + ''' - _ + Public Property OrderableUnit() As OrderableUnitType Get Return Me.orderableUnitField @@ -32646,9 +32646,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderableUnitField = value End Set End Property - + ''' - _ + Public Property ContentUnitQuantity() As ContentUnitQuantityType Get Return Me.contentUnitQuantityField @@ -32657,9 +32657,9 @@ Namespace Peppol.BISBilling30Invoice Me.contentUnitQuantityField = value End Set End Property - + ''' - _ + Public Property OrderQuantityIncrementNumeric() As OrderQuantityIncrementNumericType Get Return Me.orderQuantityIncrementNumericField @@ -32668,9 +32668,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderQuantityIncrementNumericField = value End Set End Property - + ''' - _ + Public Property MinimumOrderQuantity() As MinimumOrderQuantityType Get Return Me.minimumOrderQuantityField @@ -32679,9 +32679,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumOrderQuantity() As MaximumOrderQuantityType Get Return Me.maximumOrderQuantityField @@ -32690,9 +32690,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumOrderQuantityField = value End Set End Property - + ''' - _ + Public Property WarrantyInformation() As WarrantyInformationType() Get Return Me.warrantyInformationField @@ -32701,9 +32701,9 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyInformationField = value End Set End Property - + ''' - _ + Public Property PackLevelCode() As PackLevelCodeType Get Return Me.packLevelCodeField @@ -32712,7 +32712,7 @@ Namespace Peppol.BISBilling30Invoice Me.packLevelCodeField = value End Set End Property - + ''' Public Property ContractorCustomerParty() As CustomerPartyType Get @@ -32722,7 +32722,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractorCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -32732,7 +32732,7 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property WarrantyParty() As PartyType Get @@ -32742,7 +32742,7 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyPartyField = value End Set End Property - + ''' Public Property WarrantyValidityPeriod() As PeriodType Get @@ -32752,7 +32752,7 @@ Namespace Peppol.BISBilling30Invoice Me.warrantyValidityPeriodField = value End Set End Property - + ''' Public Property LineValidityPeriod() As PeriodType Get @@ -32762,9 +32762,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineValidityPeriodField = value End Set End Property - + ''' - _ + Public Property ItemComparison() As ItemComparisonType() Get Return Me.itemComparisonField @@ -32773,9 +32773,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemComparisonField = value End Set End Property - + ''' - _ + Public Property ComponentRelatedItem() As RelatedItemType() Get Return Me.componentRelatedItemField @@ -32784,9 +32784,9 @@ Namespace Peppol.BISBilling30Invoice Me.componentRelatedItemField = value End Set End Property - + ''' - _ + Public Property AccessoryRelatedItem() As RelatedItemType() Get Return Me.accessoryRelatedItemField @@ -32795,9 +32795,9 @@ Namespace Peppol.BISBilling30Invoice Me.accessoryRelatedItemField = value End Set End Property - + ''' - _ + Public Property RequiredRelatedItem() As RelatedItemType() Get Return Me.requiredRelatedItemField @@ -32806,9 +32806,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredRelatedItemField = value End Set End Property - + ''' - _ + Public Property ReplacementRelatedItem() As RelatedItemType() Get Return Me.replacementRelatedItemField @@ -32817,9 +32817,9 @@ Namespace Peppol.BISBilling30Invoice Me.replacementRelatedItemField = value End Set End Property - + ''' - _ + Public Property ComplementaryRelatedItem() As RelatedItemType() Get Return Me.complementaryRelatedItemField @@ -32828,9 +32828,9 @@ Namespace Peppol.BISBilling30Invoice Me.complementaryRelatedItemField = value End Set End Property - + ''' - _ + Public Property ReplacedRelatedItem() As RelatedItemType() Get Return Me.replacedRelatedItemField @@ -32839,9 +32839,9 @@ Namespace Peppol.BISBilling30Invoice Me.replacedRelatedItemField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -32850,9 +32850,9 @@ Namespace Peppol.BISBilling30Invoice Me.requiredItemLocationQuantityField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -32861,7 +32861,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -32871,9 +32871,9 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' - _ + Public Property KeywordItemProperty() As ItemPropertyType() Get Return Me.keywordItemPropertyField @@ -32882,7 +32882,7 @@ Namespace Peppol.BISBilling30Invoice Me.keywordItemPropertyField = value End Set End Property - + ''' Public Property CallForTendersLineReference() As LineReferenceType Get @@ -32892,7 +32892,7 @@ Namespace Peppol.BISBilling30Invoice Me.callForTendersLineReferenceField = value End Set End Property - + ''' Public Property CallForTendersDocumentReference() As DocumentReferenceType Get @@ -32903,22 +32903,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemComparisonType - + Private priceAmountField As PriceAmountType - + Private quantityField As QuantityType2 - + ''' - _ + Public Property PriceAmount() As PriceAmountType Get Return Me.priceAmountField @@ -32927,9 +32927,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceAmountField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -32939,26 +32939,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CataloguePricingUpdateLineType - + Private idField As IDType - + Private contractorCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -32967,7 +32967,7 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' Public Property ContractorCustomerParty() As CustomerPartyType Get @@ -32977,7 +32977,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractorCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -32987,9 +32987,9 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -32999,38 +32999,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueReferenceType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private revisionDateField As RevisionDateType - + Private revisionTimeField As RevisionTimeType - + Private noteField() As NoteType - + Private descriptionField() As DescriptionType - + Private versionIDField As VersionIDType - + Private previousVersionIDField As PreviousVersionIDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33039,9 +33039,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -33050,9 +33050,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -33061,9 +33061,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -33072,9 +33072,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property RevisionDate() As RevisionDateType Get Return Me.revisionDateField @@ -33083,9 +33083,9 @@ Namespace Peppol.BISBilling30Invoice Me.revisionDateField = value End Set End Property - + ''' - _ + Public Property RevisionTime() As RevisionTimeType Get Return Me.revisionTimeField @@ -33094,9 +33094,9 @@ Namespace Peppol.BISBilling30Invoice Me.revisionTimeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -33105,9 +33105,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -33116,9 +33116,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property VersionID() As VersionIDType Get Return Me.versionIDField @@ -33127,9 +33127,9 @@ Namespace Peppol.BISBilling30Invoice Me.versionIDField = value End Set End Property - + ''' - _ + Public Property PreviousVersionID() As PreviousVersionIDType Get Return Me.previousVersionIDField @@ -33139,30 +33139,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CatalogueRequestLineType - + Private idField As IDType - + Private contractSubdivisionField As ContractSubdivisionType - + Private noteField() As NoteType - + Private lineValidityPeriodField As PeriodType - + Private requiredItemLocationQuantityField() As ItemLocationQuantityType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33171,9 +33171,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ContractSubdivision() As ContractSubdivisionType Get Return Me.contractSubdivisionField @@ -33182,9 +33182,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractSubdivisionField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -33193,7 +33193,7 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' Public Property LineValidityPeriod() As PeriodType Get @@ -33203,9 +33203,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineValidityPeriodField = value End Set End Property - + ''' - _ + Public Property RequiredItemLocationQuantity() As ItemLocationQuantityType() Get Return Me.requiredItemLocationQuantityField @@ -33214,7 +33214,7 @@ Namespace Peppol.BISBilling30Invoice Me.requiredItemLocationQuantityField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -33225,50 +33225,50 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CertificateOfOriginApplicationType - + Private referenceIDField As ReferenceIDType - + Private certificateTypeField As CertificateTypeType - + Private applicationStatusCodeField As ApplicationStatusCodeType - + Private originalJobIDField As OriginalJobIDType - + Private previousJobIDField As PreviousJobIDType - + Private remarksField() As RemarksType - + Private shipmentField As ShipmentType - + Private endorserPartyField() As EndorserPartyType - + Private preparationPartyField As PartyType - + Private issuerPartyField As PartyType - + Private exporterPartyField As PartyType - + Private importerPartyField As PartyType - + Private issuingCountryField As CountryType - + Private documentDistributionField() As DocumentDistributionType - + Private supportingDocumentReferenceField() As DocumentReferenceType - + Private signatureField() As SignatureType - + ''' - _ + Public Property ReferenceID() As ReferenceIDType Get Return Me.referenceIDField @@ -33277,9 +33277,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceIDField = value End Set End Property - + ''' - _ + Public Property CertificateType() As CertificateTypeType Get Return Me.certificateTypeField @@ -33288,9 +33288,9 @@ Namespace Peppol.BISBilling30Invoice Me.certificateTypeField = value End Set End Property - + ''' - _ + Public Property ApplicationStatusCode() As ApplicationStatusCodeType Get Return Me.applicationStatusCodeField @@ -33299,9 +33299,9 @@ Namespace Peppol.BISBilling30Invoice Me.applicationStatusCodeField = value End Set End Property - + ''' - _ + Public Property OriginalJobID() As OriginalJobIDType Get Return Me.originalJobIDField @@ -33310,9 +33310,9 @@ Namespace Peppol.BISBilling30Invoice Me.originalJobIDField = value End Set End Property - + ''' - _ + Public Property PreviousJobID() As PreviousJobIDType Get Return Me.previousJobIDField @@ -33321,9 +33321,9 @@ Namespace Peppol.BISBilling30Invoice Me.previousJobIDField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -33332,7 +33332,7 @@ Namespace Peppol.BISBilling30Invoice Me.remarksField = value End Set End Property - + ''' Public Property Shipment() As ShipmentType Get @@ -33342,9 +33342,9 @@ Namespace Peppol.BISBilling30Invoice Me.shipmentField = value End Set End Property - + ''' - _ + Public Property EndorserParty() As EndorserPartyType() Get Return Me.endorserPartyField @@ -33353,7 +33353,7 @@ Namespace Peppol.BISBilling30Invoice Me.endorserPartyField = value End Set End Property - + ''' Public Property PreparationParty() As PartyType Get @@ -33363,7 +33363,7 @@ Namespace Peppol.BISBilling30Invoice Me.preparationPartyField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -33373,7 +33373,7 @@ Namespace Peppol.BISBilling30Invoice Me.issuerPartyField = value End Set End Property - + ''' Public Property ExporterParty() As PartyType Get @@ -33383,7 +33383,7 @@ Namespace Peppol.BISBilling30Invoice Me.exporterPartyField = value End Set End Property - + ''' Public Property ImporterParty() As PartyType Get @@ -33393,7 +33393,7 @@ Namespace Peppol.BISBilling30Invoice Me.importerPartyField = value End Set End Property - + ''' Public Property IssuingCountry() As CountryType Get @@ -33403,9 +33403,9 @@ Namespace Peppol.BISBilling30Invoice Me.issuingCountryField = value End Set End Property - + ''' - _ + Public Property DocumentDistribution() As DocumentDistributionType() Get Return Me.documentDistributionField @@ -33414,9 +33414,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentDistributionField = value End Set End Property - + ''' - _ + Public Property SupportingDocumentReference() As DocumentReferenceType() Get Return Me.supportingDocumentReferenceField @@ -33425,9 +33425,9 @@ Namespace Peppol.BISBilling30Invoice Me.supportingDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -33437,26 +33437,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EndorserPartyType - + Private roleCodeField As RoleCodeType - + Private sequenceNumericField As SequenceNumericType - + Private partyField As PartyType - + Private signatoryContactField As ContactType - + ''' - _ + Public Property RoleCode() As RoleCodeType Get Return Me.roleCodeField @@ -33465,9 +33465,9 @@ Namespace Peppol.BISBilling30Invoice Me.roleCodeField = value End Set End Property - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -33476,7 +33476,7 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceNumericField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -33486,7 +33486,7 @@ Namespace Peppol.BISBilling30Invoice Me.partyField = value End Set End Property - + ''' Public Property SignatoryContact() As ContactType Get @@ -33497,24 +33497,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DocumentDistributionType - + Private printQualifierField As PrintQualifierType - + Private maximumCopiesNumericField As MaximumCopiesNumericType - + Private partyField As PartyType - + ''' - _ + Public Property PrintQualifier() As PrintQualifierType Get Return Me.printQualifierField @@ -33523,9 +33523,9 @@ Namespace Peppol.BISBilling30Invoice Me.printQualifierField = value End Set End Property - + ''' - _ + Public Property MaximumCopiesNumeric() As MaximumCopiesNumericType Get Return Me.maximumCopiesNumericField @@ -33534,7 +33534,7 @@ Namespace Peppol.BISBilling30Invoice Me.maximumCopiesNumericField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -33545,30 +33545,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PaymentType - + Private idField As IDType - + Private paidAmountField As PaidAmountType - + Private receivedDateField As ReceivedDateType - + Private paidDateField As PaidDateType - + Private paidTimeField As PaidTimeType - + Private instructionIDField As InstructionIDType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33577,9 +33577,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property PaidAmount() As PaidAmountType Get Return Me.paidAmountField @@ -33588,9 +33588,9 @@ Namespace Peppol.BISBilling30Invoice Me.paidAmountField = value End Set End Property - + ''' - _ + Public Property ReceivedDate() As ReceivedDateType Get Return Me.receivedDateField @@ -33599,9 +33599,9 @@ Namespace Peppol.BISBilling30Invoice Me.receivedDateField = value End Set End Property - + ''' - _ + Public Property PaidDate() As PaidDateType Get Return Me.paidDateField @@ -33610,9 +33610,9 @@ Namespace Peppol.BISBilling30Invoice Me.paidDateField = value End Set End Property - + ''' - _ + Public Property PaidTime() As PaidTimeType Get Return Me.paidTimeField @@ -33621,9 +33621,9 @@ Namespace Peppol.BISBilling30Invoice Me.paidTimeField = value End Set End Property - + ''' - _ + Public Property InstructionID() As InstructionIDType Get Return Me.instructionIDField @@ -33633,32 +33633,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionType - + Private utilityStatementTypeCodeField As UtilityStatementTypeCodeType - + Private mainPeriodField As PeriodType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private energyWaterSupplyField As EnergyWaterSupplyType - + Private telecommunicationsSupplyField As TelecommunicationsSupplyType - + Private legalMonetaryTotalField As MonetaryTotalType - + ''' - _ + Public Property UtilityStatementTypeCode() As UtilityStatementTypeCodeType Get Return Me.utilityStatementTypeCodeField @@ -33667,7 +33667,7 @@ Namespace Peppol.BISBilling30Invoice Me.utilityStatementTypeCodeField = value End Set End Property - + ''' Public Property MainPeriod() As PeriodType Get @@ -33677,9 +33677,9 @@ Namespace Peppol.BISBilling30Invoice Me.mainPeriodField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -33688,9 +33688,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -33699,7 +33699,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' Public Property EnergyWaterSupply() As EnergyWaterSupplyType Get @@ -33709,7 +33709,7 @@ Namespace Peppol.BISBilling30Invoice Me.energyWaterSupplyField = value End Set End Property - + ''' Public Property TelecommunicationsSupply() As TelecommunicationsSupplyType Get @@ -33719,7 +33719,7 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsSupplyField = value End Set End Property - + ''' Public Property LegalMonetaryTotal() As MonetaryTotalType Get @@ -33730,26 +33730,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EnergyWaterSupplyType - + Private consumptionReportField() As ConsumptionReportType - + Private energyTaxReportField() As EnergyTaxReportType - + Private consumptionAverageField() As ConsumptionAverageType - + Private energyWaterConsumptionCorrectionField() As ConsumptionCorrectionType - + ''' - _ + Public Property ConsumptionReport() As ConsumptionReportType() Get Return Me.consumptionReportField @@ -33758,9 +33758,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionReportField = value End Set End Property - + ''' - _ + Public Property EnergyTaxReport() As EnergyTaxReportType() Get Return Me.energyTaxReportField @@ -33769,9 +33769,9 @@ Namespace Peppol.BISBilling30Invoice Me.energyTaxReportField = value End Set End Property - + ''' - _ + Public Property ConsumptionAverage() As ConsumptionAverageType() Get Return Me.consumptionAverageField @@ -33780,9 +33780,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionAverageField = value End Set End Property - + ''' - _ + Public Property EnergyWaterConsumptionCorrection() As ConsumptionCorrectionType() Get Return Me.energyWaterConsumptionCorrectionField @@ -33792,54 +33792,54 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionReportType - + Private idField As IDType - + Private consumptionTypeField As ConsumptionTypeType - + Private consumptionTypeCodeField As ConsumptionTypeCodeType - + Private descriptionField() As DescriptionType - + Private totalConsumedQuantityField As TotalConsumedQuantityType - + Private basicConsumedQuantityField As BasicConsumedQuantityType - + Private residentOccupantsNumericField As ResidentOccupantsNumericType - + Private consumersEnergyLevelCodeField As ConsumersEnergyLevelCodeType - + Private consumersEnergyLevelField As ConsumersEnergyLevelType - + Private residenceTypeField As ResidenceTypeType - + Private residenceTypeCodeField As ResidenceTypeCodeType - + Private heatingTypeField As HeatingTypeType - + Private heatingTypeCodeField As HeatingTypeCodeType - + Private periodField As PeriodType - + Private guidanceDocumentReferenceField As DocumentReferenceType - + Private documentReferenceField As DocumentReferenceType - + Private consumptionReportReferenceField() As ConsumptionReportReferenceType - + Private consumptionHistoryField() As ConsumptionHistoryType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -33848,9 +33848,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ConsumptionType() As ConsumptionTypeType Get Return Me.consumptionTypeField @@ -33859,9 +33859,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionTypeField = value End Set End Property - + ''' - _ + Public Property ConsumptionTypeCode() As ConsumptionTypeCodeType Get Return Me.consumptionTypeCodeField @@ -33870,9 +33870,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -33881,9 +33881,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property TotalConsumedQuantity() As TotalConsumedQuantityType Get Return Me.totalConsumedQuantityField @@ -33892,9 +33892,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalConsumedQuantityField = value End Set End Property - + ''' - _ + Public Property BasicConsumedQuantity() As BasicConsumedQuantityType Get Return Me.basicConsumedQuantityField @@ -33903,9 +33903,9 @@ Namespace Peppol.BISBilling30Invoice Me.basicConsumedQuantityField = value End Set End Property - + ''' - _ + Public Property ResidentOccupantsNumeric() As ResidentOccupantsNumericType Get Return Me.residentOccupantsNumericField @@ -33914,9 +33914,9 @@ Namespace Peppol.BISBilling30Invoice Me.residentOccupantsNumericField = value End Set End Property - + ''' - _ + Public Property ConsumersEnergyLevelCode() As ConsumersEnergyLevelCodeType Get Return Me.consumersEnergyLevelCodeField @@ -33925,9 +33925,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumersEnergyLevelCodeField = value End Set End Property - + ''' - _ + Public Property ConsumersEnergyLevel() As ConsumersEnergyLevelType Get Return Me.consumersEnergyLevelField @@ -33936,9 +33936,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumersEnergyLevelField = value End Set End Property - + ''' - _ + Public Property ResidenceType() As ResidenceTypeType Get Return Me.residenceTypeField @@ -33947,9 +33947,9 @@ Namespace Peppol.BISBilling30Invoice Me.residenceTypeField = value End Set End Property - + ''' - _ + Public Property ResidenceTypeCode() As ResidenceTypeCodeType Get Return Me.residenceTypeCodeField @@ -33958,9 +33958,9 @@ Namespace Peppol.BISBilling30Invoice Me.residenceTypeCodeField = value End Set End Property - + ''' - _ + Public Property HeatingType() As HeatingTypeType Get Return Me.heatingTypeField @@ -33969,9 +33969,9 @@ Namespace Peppol.BISBilling30Invoice Me.heatingTypeField = value End Set End Property - + ''' - _ + Public Property HeatingTypeCode() As HeatingTypeCodeType Get Return Me.heatingTypeCodeField @@ -33980,7 +33980,7 @@ Namespace Peppol.BISBilling30Invoice Me.heatingTypeCodeField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -33990,7 +33990,7 @@ Namespace Peppol.BISBilling30Invoice Me.periodField = value End Set End Property - + ''' Public Property GuidanceDocumentReference() As DocumentReferenceType Get @@ -34000,7 +34000,7 @@ Namespace Peppol.BISBilling30Invoice Me.guidanceDocumentReferenceField = value End Set End Property - + ''' Public Property DocumentReference() As DocumentReferenceType Get @@ -34010,9 +34010,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' - _ + Public Property ConsumptionReportReference() As ConsumptionReportReferenceType() Get Return Me.consumptionReportReferenceField @@ -34021,9 +34021,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionReportReferenceField = value End Set End Property - + ''' - _ + Public Property ConsumptionHistory() As ConsumptionHistoryType() Get Return Me.consumptionHistoryField @@ -34033,28 +34033,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionReportReferenceType - + Private consumptionReportIDField As ConsumptionReportIDType - + Private consumptionTypeField As ConsumptionTypeType - + Private consumptionTypeCodeField As ConsumptionTypeCodeType - + Private totalConsumedQuantityField As TotalConsumedQuantityType - + Private periodField As PeriodType - + ''' - _ + Public Property ConsumptionReportID() As ConsumptionReportIDType Get Return Me.consumptionReportIDField @@ -34063,9 +34063,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionReportIDField = value End Set End Property - + ''' - _ + Public Property ConsumptionType() As ConsumptionTypeType Get Return Me.consumptionTypeField @@ -34074,9 +34074,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionTypeField = value End Set End Property - + ''' - _ + Public Property ConsumptionTypeCode() As ConsumptionTypeCodeType Get Return Me.consumptionTypeCodeField @@ -34085,9 +34085,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionTypeCodeField = value End Set End Property - + ''' - _ + Public Property TotalConsumedQuantity() As TotalConsumedQuantityType Get Return Me.totalConsumedQuantityField @@ -34096,7 +34096,7 @@ Namespace Peppol.BISBilling30Invoice Me.totalConsumedQuantityField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -34107,32 +34107,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionHistoryType - + Private meterNumberField As MeterNumberType - + Private quantityField As QuantityType2 - + Private amountField As AmountType2 - + Private consumptionLevelCodeField As ConsumptionLevelCodeType - + Private consumptionLevelField As ConsumptionLevelType - + Private descriptionField() As DescriptionType - + Private periodField As PeriodType - + ''' - _ + Public Property MeterNumber() As MeterNumberType Get Return Me.meterNumberField @@ -34141,9 +34141,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterNumberField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -34152,9 +34152,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -34163,9 +34163,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property ConsumptionLevelCode() As ConsumptionLevelCodeType Get Return Me.consumptionLevelCodeField @@ -34174,9 +34174,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionLevelCodeField = value End Set End Property - + ''' - _ + Public Property ConsumptionLevel() As ConsumptionLevelType Get Return Me.consumptionLevelField @@ -34185,9 +34185,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionLevelField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34196,7 +34196,7 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -34207,26 +34207,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EnergyTaxReportType - + Private taxEnergyAmountField As TaxEnergyAmountType - + Private taxEnergyOnAccountAmountField As TaxEnergyOnAccountAmountType - + Private taxEnergyBalanceAmountField As TaxEnergyBalanceAmountType - + Private taxSchemeField As TaxSchemeType - + ''' - _ + Public Property TaxEnergyAmount() As TaxEnergyAmountType Get Return Me.taxEnergyAmountField @@ -34235,9 +34235,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxEnergyAmountField = value End Set End Property - + ''' - _ + Public Property TaxEnergyOnAccountAmount() As TaxEnergyOnAccountAmountType Get Return Me.taxEnergyOnAccountAmountField @@ -34246,9 +34246,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxEnergyOnAccountAmountField = value End Set End Property - + ''' - _ + Public Property TaxEnergyBalanceAmount() As TaxEnergyBalanceAmountType Get Return Me.taxEnergyBalanceAmountField @@ -34257,7 +34257,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxEnergyBalanceAmountField = value End Set End Property - + ''' Public Property TaxScheme() As TaxSchemeType Get @@ -34268,22 +34268,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionAverageType - + Private averageAmountField As AverageAmountType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property AverageAmount() As AverageAmountType Get Return Me.averageAmountField @@ -34292,9 +34292,9 @@ Namespace Peppol.BISBilling30Invoice Me.averageAmountField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34304,42 +34304,42 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionCorrectionType - + Private correctionTypeField As CorrectionTypeType - + Private correctionTypeCodeField As CorrectionTypeCodeType - + Private meterNumberField As MeterNumberType - + Private gasPressureQuantityField As GasPressureQuantityType - + Private actualTemperatureReductionQuantityField As ActualTemperatureReductionQuantityType - + Private normalTemperatureReductionQuantityField As NormalTemperatureReductionQuantityType - + Private differenceTemperatureReductionQuantityField As DifferenceTemperatureReductionQuantityType - + Private descriptionField() As DescriptionType - + Private correctionUnitAmountField As CorrectionUnitAmountType - + Private consumptionEnergyQuantityField As ConsumptionEnergyQuantityType - + Private consumptionWaterQuantityField As ConsumptionWaterQuantityType - + Private correctionAmountField As CorrectionAmountType - + ''' - _ + Public Property CorrectionType() As CorrectionTypeType Get Return Me.correctionTypeField @@ -34348,9 +34348,9 @@ Namespace Peppol.BISBilling30Invoice Me.correctionTypeField = value End Set End Property - + ''' - _ + Public Property CorrectionTypeCode() As CorrectionTypeCodeType Get Return Me.correctionTypeCodeField @@ -34359,9 +34359,9 @@ Namespace Peppol.BISBilling30Invoice Me.correctionTypeCodeField = value End Set End Property - + ''' - _ + Public Property MeterNumber() As MeterNumberType Get Return Me.meterNumberField @@ -34370,9 +34370,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterNumberField = value End Set End Property - + ''' - _ + Public Property GasPressureQuantity() As GasPressureQuantityType Get Return Me.gasPressureQuantityField @@ -34381,9 +34381,9 @@ Namespace Peppol.BISBilling30Invoice Me.gasPressureQuantityField = value End Set End Property - + ''' - _ + Public Property ActualTemperatureReductionQuantity() As ActualTemperatureReductionQuantityType Get Return Me.actualTemperatureReductionQuantityField @@ -34392,9 +34392,9 @@ Namespace Peppol.BISBilling30Invoice Me.actualTemperatureReductionQuantityField = value End Set End Property - + ''' - _ + Public Property NormalTemperatureReductionQuantity() As NormalTemperatureReductionQuantityType Get Return Me.normalTemperatureReductionQuantityField @@ -34403,9 +34403,9 @@ Namespace Peppol.BISBilling30Invoice Me.normalTemperatureReductionQuantityField = value End Set End Property - + ''' - _ + Public Property DifferenceTemperatureReductionQuantity() As DifferenceTemperatureReductionQuantityType Get Return Me.differenceTemperatureReductionQuantityField @@ -34414,9 +34414,9 @@ Namespace Peppol.BISBilling30Invoice Me.differenceTemperatureReductionQuantityField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34425,9 +34425,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CorrectionUnitAmount() As CorrectionUnitAmountType Get Return Me.correctionUnitAmountField @@ -34436,9 +34436,9 @@ Namespace Peppol.BISBilling30Invoice Me.correctionUnitAmountField = value End Set End Property - + ''' - _ + Public Property ConsumptionEnergyQuantity() As ConsumptionEnergyQuantityType Get Return Me.consumptionEnergyQuantityField @@ -34447,9 +34447,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionEnergyQuantityField = value End Set End Property - + ''' - _ + Public Property ConsumptionWaterQuantity() As ConsumptionWaterQuantityType Get Return Me.consumptionWaterQuantityField @@ -34458,9 +34458,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionWaterQuantityField = value End Set End Property - + ''' - _ + Public Property CorrectionAmount() As CorrectionAmountType Get Return Me.correctionAmountField @@ -34470,30 +34470,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyType - + Private telecommunicationsSupplyType1Field As TelecommunicationsSupplyTypeType - + Private telecommunicationsSupplyTypeCodeField As TelecommunicationsSupplyTypeCodeType - + Private privacyCodeField As PrivacyCodeType - + Private descriptionField() As DescriptionType - + Private totalAmountField As TotalAmountType - + Private telecommunicationsSupplyLineField() As TelecommunicationsSupplyLineType - + ''' - _ + Public Property TelecommunicationsSupplyType1() As TelecommunicationsSupplyTypeType Get Return Me.telecommunicationsSupplyType1Field @@ -34502,9 +34502,9 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsSupplyType1Field = value End Set End Property - + ''' - _ + Public Property TelecommunicationsSupplyTypeCode() As TelecommunicationsSupplyTypeCodeType Get Return Me.telecommunicationsSupplyTypeCodeField @@ -34513,9 +34513,9 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsSupplyTypeCodeField = value End Set End Property - + ''' - _ + Public Property PrivacyCode() As PrivacyCodeType Get Return Me.privacyCodeField @@ -34524,9 +34524,9 @@ Namespace Peppol.BISBilling30Invoice Me.privacyCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34535,9 +34535,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property TotalAmount() As TotalAmountType Get Return Me.totalAmountField @@ -34546,9 +34546,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalAmountField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsSupplyLine() As TelecommunicationsSupplyLineType() Get Return Me.telecommunicationsSupplyLineField @@ -34558,34 +34558,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TelecommunicationsSupplyLineType - + Private idField As IDType - + Private phoneNumberField As PhoneNumberType - + Private descriptionField() As DescriptionType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private exchangeRateField() As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private telecommunicationsServiceField() As TelecommunicationsServiceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -34594,9 +34594,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property PhoneNumber() As PhoneNumberType Get Return Me.phoneNumberField @@ -34605,9 +34605,9 @@ Namespace Peppol.BISBilling30Invoice Me.phoneNumberField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -34616,9 +34616,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -34627,9 +34627,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property ExchangeRate() As ExchangeRateType() Get Return Me.exchangeRateField @@ -34638,9 +34638,9 @@ Namespace Peppol.BISBilling30Invoice Me.exchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -34649,9 +34649,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -34660,9 +34660,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsService() As TelecommunicationsServiceType() Get Return Me.telecommunicationsServiceField @@ -34672,60 +34672,60 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TelecommunicationsServiceType - + Private idField As IDType - + Private callDateField As CallDateType - + Private callTimeField As CallTimeType - + Private serviceNumberCalledField As ServiceNumberCalledType - + Private telecommunicationsServiceCategoryField As TelecommunicationsServiceCategoryType - + Private telecommunicationsServiceCategoryCodeField As TelecommunicationsServiceCategoryCodeType - + Private movieTitleField As MovieTitleType - + Private roamingPartnerNameField As RoamingPartnerNameType - + Private payPerViewField As PayPerViewType - + Private quantityField As QuantityType2 - + Private telecommunicationsServiceCallField As TelecommunicationsServiceCallType - + Private telecommunicationsServiceCallCodeField As TelecommunicationsServiceCallCodeType - + Private callBaseAmountField As CallBaseAmountType - + Private callExtensionAmountField As CallExtensionAmountType - + Private priceField As PriceType - + Private countryField As CountryType - + Private exchangeRateField() As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private callDutyField() As DutyType1 - + Private timeDutyField() As DutyType1 - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -34734,9 +34734,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property CallDate() As CallDateType Get Return Me.callDateField @@ -34745,9 +34745,9 @@ Namespace Peppol.BISBilling30Invoice Me.callDateField = value End Set End Property - + ''' - _ + Public Property CallTime() As CallTimeType Get Return Me.callTimeField @@ -34756,9 +34756,9 @@ Namespace Peppol.BISBilling30Invoice Me.callTimeField = value End Set End Property - + ''' - _ + Public Property ServiceNumberCalled() As ServiceNumberCalledType Get Return Me.serviceNumberCalledField @@ -34767,9 +34767,9 @@ Namespace Peppol.BISBilling30Invoice Me.serviceNumberCalledField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCategory() As TelecommunicationsServiceCategoryType Get Return Me.telecommunicationsServiceCategoryField @@ -34778,9 +34778,9 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsServiceCategoryField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCategoryCode() As TelecommunicationsServiceCategoryCodeType Get Return Me.telecommunicationsServiceCategoryCodeField @@ -34789,9 +34789,9 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsServiceCategoryCodeField = value End Set End Property - + ''' - _ + Public Property MovieTitle() As MovieTitleType Get Return Me.movieTitleField @@ -34800,9 +34800,9 @@ Namespace Peppol.BISBilling30Invoice Me.movieTitleField = value End Set End Property - + ''' - _ + Public Property RoamingPartnerName() As RoamingPartnerNameType Get Return Me.roamingPartnerNameField @@ -34811,9 +34811,9 @@ Namespace Peppol.BISBilling30Invoice Me.roamingPartnerNameField = value End Set End Property - + ''' - _ + Public Property PayPerView() As PayPerViewType Get Return Me.payPerViewField @@ -34822,9 +34822,9 @@ Namespace Peppol.BISBilling30Invoice Me.payPerViewField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -34833,9 +34833,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCall() As TelecommunicationsServiceCallType Get Return Me.telecommunicationsServiceCallField @@ -34844,9 +34844,9 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsServiceCallField = value End Set End Property - + ''' - _ + Public Property TelecommunicationsServiceCallCode() As TelecommunicationsServiceCallCodeType Get Return Me.telecommunicationsServiceCallCodeField @@ -34855,9 +34855,9 @@ Namespace Peppol.BISBilling30Invoice Me.telecommunicationsServiceCallCodeField = value End Set End Property - + ''' - _ + Public Property CallBaseAmount() As CallBaseAmountType Get Return Me.callBaseAmountField @@ -34866,9 +34866,9 @@ Namespace Peppol.BISBilling30Invoice Me.callBaseAmountField = value End Set End Property - + ''' - _ + Public Property CallExtensionAmount() As CallExtensionAmountType Get Return Me.callExtensionAmountField @@ -34877,7 +34877,7 @@ Namespace Peppol.BISBilling30Invoice Me.callExtensionAmountField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -34887,7 +34887,7 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' Public Property Country() As CountryType Get @@ -34897,9 +34897,9 @@ Namespace Peppol.BISBilling30Invoice Me.countryField = value End Set End Property - + ''' - _ + Public Property ExchangeRate() As ExchangeRateType() Get Return Me.exchangeRateField @@ -34908,9 +34908,9 @@ Namespace Peppol.BISBilling30Invoice Me.exchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -34919,9 +34919,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -34930,9 +34930,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property CallDuty() As DutyType1() Get Return Me.callDutyField @@ -34941,9 +34941,9 @@ Namespace Peppol.BISBilling30Invoice Me.callDutyField = value End Set End Property - + ''' - _ + Public Property TimeDuty() As DutyType1() Get Return Me.timeDutyField @@ -34953,40 +34953,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionLineType - + Private idField As IDType - + Private parentDocumentLineReferenceIDField As ParentDocumentLineReferenceIDType - + Private invoicedQuantityField As InvoicedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private periodField As PeriodType - + Private deliveryField() As DeliveryType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxTotalField() As TaxTotalType - + Private utilityItemField As UtilityItemType - + Private priceField As PriceType - + Private unstructuredPriceField As UnstructuredPriceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -34995,9 +34995,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property ParentDocumentLineReferenceID() As ParentDocumentLineReferenceIDType Get Return Me.parentDocumentLineReferenceIDField @@ -35006,9 +35006,9 @@ Namespace Peppol.BISBilling30Invoice Me.parentDocumentLineReferenceIDField = value End Set End Property - + ''' - _ + Public Property InvoicedQuantity() As InvoicedQuantityType Get Return Me.invoicedQuantityField @@ -35017,9 +35017,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -35028,7 +35028,7 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -35038,9 +35038,9 @@ Namespace Peppol.BISBilling30Invoice Me.periodField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -35049,9 +35049,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -35060,9 +35060,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -35071,7 +35071,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' Public Property UtilityItem() As UtilityItemType Get @@ -35081,7 +35081,7 @@ Namespace Peppol.BISBilling30Invoice Me.utilityItemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -35091,7 +35091,7 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' Public Property UnstructuredPrice() As UnstructuredPriceType Get @@ -35102,48 +35102,48 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class UtilityItemType - + Private idField As IDType - + Private subscriberIDField As SubscriberIDType - + Private subscriberTypeField As SubscriberTypeType - + Private subscriberTypeCodeField As SubscriberTypeCodeType - + Private descriptionField() As DescriptionType - + Private packQuantityField As PackQuantityType - + Private packSizeNumericField As PackSizeNumericType - + Private consumptionTypeField As ConsumptionTypeType - + Private consumptionTypeCodeField As ConsumptionTypeCodeType - + Private currentChargeTypeField As CurrentChargeTypeType - + Private currentChargeTypeCodeField As CurrentChargeTypeCodeType - + Private oneTimeChargeTypeField As OneTimeChargeTypeType - + Private oneTimeChargeTypeCodeField As OneTimeChargeTypeCodeType - + Private taxCategoryField As TaxCategoryType - + Private contractField As ContractType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -35152,9 +35152,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property SubscriberID() As SubscriberIDType Get Return Me.subscriberIDField @@ -35163,9 +35163,9 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberIDField = value End Set End Property - + ''' - _ + Public Property SubscriberType() As SubscriberTypeType Get Return Me.subscriberTypeField @@ -35174,9 +35174,9 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberTypeField = value End Set End Property - + ''' - _ + Public Property SubscriberTypeCode() As SubscriberTypeCodeType Get Return Me.subscriberTypeCodeField @@ -35185,9 +35185,9 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberTypeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -35196,9 +35196,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property PackQuantity() As PackQuantityType Get Return Me.packQuantityField @@ -35207,9 +35207,9 @@ Namespace Peppol.BISBilling30Invoice Me.packQuantityField = value End Set End Property - + ''' - _ + Public Property PackSizeNumeric() As PackSizeNumericType Get Return Me.packSizeNumericField @@ -35218,9 +35218,9 @@ Namespace Peppol.BISBilling30Invoice Me.packSizeNumericField = value End Set End Property - + ''' - _ + Public Property ConsumptionType() As ConsumptionTypeType Get Return Me.consumptionTypeField @@ -35229,9 +35229,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionTypeField = value End Set End Property - + ''' - _ + Public Property ConsumptionTypeCode() As ConsumptionTypeCodeType Get Return Me.consumptionTypeCodeField @@ -35240,9 +35240,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionTypeCodeField = value End Set End Property - + ''' - _ + Public Property CurrentChargeType() As CurrentChargeTypeType Get Return Me.currentChargeTypeField @@ -35251,9 +35251,9 @@ Namespace Peppol.BISBilling30Invoice Me.currentChargeTypeField = value End Set End Property - + ''' - _ + Public Property CurrentChargeTypeCode() As CurrentChargeTypeCodeType Get Return Me.currentChargeTypeCodeField @@ -35262,9 +35262,9 @@ Namespace Peppol.BISBilling30Invoice Me.currentChargeTypeCodeField = value End Set End Property - + ''' - _ + Public Property OneTimeChargeType() As OneTimeChargeTypeType Get Return Me.oneTimeChargeTypeField @@ -35273,9 +35273,9 @@ Namespace Peppol.BISBilling30Invoice Me.oneTimeChargeTypeField = value End Set End Property - + ''' - _ + Public Property OneTimeChargeTypeCode() As OneTimeChargeTypeCodeType Get Return Me.oneTimeChargeTypeCodeField @@ -35284,7 +35284,7 @@ Namespace Peppol.BISBilling30Invoice Me.oneTimeChargeTypeCodeField = value End Set End Property - + ''' Public Property TaxCategory() As TaxCategoryType Get @@ -35294,7 +35294,7 @@ Namespace Peppol.BISBilling30Invoice Me.taxCategoryField = value End Set End Property - + ''' Public Property Contract() As ContractType Get @@ -35305,22 +35305,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class UnstructuredPriceType - + Private priceAmountField As PriceAmountType - + Private timeAmountField As TimeAmountType - + ''' - _ + Public Property PriceAmount() As PriceAmountType Get Return Me.priceAmountField @@ -35329,9 +35329,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceAmountField = value End Set End Property - + ''' - _ + Public Property TimeAmount() As TimeAmountType Get Return Me.timeAmountField @@ -35341,36 +35341,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ConsumptionPointType - + Private idField As IDType - + Private descriptionField() As DescriptionType - + Private subscriberIDField As SubscriberIDType - + Private subscriberTypeField As SubscriberTypeType - + Private subscriberTypeCodeField As SubscriberTypeCodeType - + Private totalDeliveredQuantityField As TotalDeliveredQuantityType - + Private addressField As AddressType - + Private webSiteAccessField As WebSiteAccessType - + Private utilityMeterField() As MeterType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -35379,9 +35379,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -35390,9 +35390,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property SubscriberID() As SubscriberIDType Get Return Me.subscriberIDField @@ -35401,9 +35401,9 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberIDField = value End Set End Property - + ''' - _ + Public Property SubscriberType() As SubscriberTypeType Get Return Me.subscriberTypeField @@ -35412,9 +35412,9 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberTypeField = value End Set End Property - + ''' - _ + Public Property SubscriberTypeCode() As SubscriberTypeCodeType Get Return Me.subscriberTypeCodeField @@ -35423,9 +35423,9 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberTypeCodeField = value End Set End Property - + ''' - _ + Public Property TotalDeliveredQuantity() As TotalDeliveredQuantityType Get Return Me.totalDeliveredQuantityField @@ -35434,7 +35434,7 @@ Namespace Peppol.BISBilling30Invoice Me.totalDeliveredQuantityField = value End Set End Property - + ''' Public Property Address() As AddressType Get @@ -35444,7 +35444,7 @@ Namespace Peppol.BISBilling30Invoice Me.addressField = value End Set End Property - + ''' Public Property WebSiteAccess() As WebSiteAccessType Get @@ -35454,9 +35454,9 @@ Namespace Peppol.BISBilling30Invoice Me.webSiteAccessField = value End Set End Property - + ''' - _ + Public Property UtilityMeter() As MeterType() Get Return Me.utilityMeterField @@ -35466,24 +35466,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class WebSiteAccessType - + Private uRIField As URIType - + Private passwordField As PasswordType - + Private loginField As LoginType - + ''' - _ + Public Property URI() As URIType Get Return Me.uRIField @@ -35492,9 +35492,9 @@ Namespace Peppol.BISBilling30Invoice Me.uRIField = value End Set End Property - + ''' - _ + Public Property Password() As PasswordType Get Return Me.passwordField @@ -35503,9 +35503,9 @@ Namespace Peppol.BISBilling30Invoice Me.passwordField = value End Set End Property - + ''' - _ + Public Property Login() As LoginType Get Return Me.loginField @@ -35515,32 +35515,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MeterType - + Private meterNumberField As MeterNumberType - + Private meterNameField As MeterNameType - + Private meterConstantField As MeterConstantType - + Private meterConstantCodeField As MeterConstantCodeType - + Private totalDeliveredQuantityField As TotalDeliveredQuantityType - + Private meterReadingField() As MeterReadingType - + Private meterPropertyField() As MeterPropertyType - + ''' - _ + Public Property MeterNumber() As MeterNumberType Get Return Me.meterNumberField @@ -35549,9 +35549,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterNumberField = value End Set End Property - + ''' - _ + Public Property MeterName() As MeterNameType Get Return Me.meterNameField @@ -35560,9 +35560,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterNameField = value End Set End Property - + ''' - _ + Public Property MeterConstant() As MeterConstantType Get Return Me.meterConstantField @@ -35571,9 +35571,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterConstantField = value End Set End Property - + ''' - _ + Public Property MeterConstantCode() As MeterConstantCodeType Get Return Me.meterConstantCodeField @@ -35582,9 +35582,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterConstantCodeField = value End Set End Property - + ''' - _ + Public Property TotalDeliveredQuantity() As TotalDeliveredQuantityType Get Return Me.totalDeliveredQuantityField @@ -35593,9 +35593,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalDeliveredQuantityField = value End Set End Property - + ''' - _ + Public Property MeterReading() As MeterReadingType() Get Return Me.meterReadingField @@ -35604,9 +35604,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterReadingField = value End Set End Property - + ''' - _ + Public Property MeterProperty() As MeterPropertyType() Get Return Me.meterPropertyField @@ -35616,44 +35616,44 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MeterReadingType - + Private idField As IDType - + Private meterReadingType1Field As MeterReadingTypeType - + Private meterReadingTypeCodeField As MeterReadingTypeCodeType - + Private previousMeterReadingDateField As PreviousMeterReadingDateType - + Private previousMeterQuantityField As PreviousMeterQuantityType - + Private latestMeterReadingDateField As LatestMeterReadingDateType - + Private latestMeterQuantityField As LatestMeterQuantityType - + Private previousMeterReadingMethodField As PreviousMeterReadingMethodType - + Private previousMeterReadingMethodCodeField As PreviousMeterReadingMethodCodeType - + Private latestMeterReadingMethodField As LatestMeterReadingMethodType - + Private latestMeterReadingMethodCodeField As LatestMeterReadingMethodCodeType - + Private meterReadingCommentsField() As MeterReadingCommentsType - + Private deliveredQuantityField As DeliveredQuantityType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -35662,9 +35662,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property MeterReadingType1() As MeterReadingTypeType Get Return Me.meterReadingType1Field @@ -35673,9 +35673,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterReadingType1Field = value End Set End Property - + ''' - _ + Public Property MeterReadingTypeCode() As MeterReadingTypeCodeType Get Return Me.meterReadingTypeCodeField @@ -35684,9 +35684,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterReadingTypeCodeField = value End Set End Property - + ''' - _ + Public Property PreviousMeterReadingDate() As PreviousMeterReadingDateType Get Return Me.previousMeterReadingDateField @@ -35695,9 +35695,9 @@ Namespace Peppol.BISBilling30Invoice Me.previousMeterReadingDateField = value End Set End Property - + ''' - _ + Public Property PreviousMeterQuantity() As PreviousMeterQuantityType Get Return Me.previousMeterQuantityField @@ -35706,9 +35706,9 @@ Namespace Peppol.BISBilling30Invoice Me.previousMeterQuantityField = value End Set End Property - + ''' - _ + Public Property LatestMeterReadingDate() As LatestMeterReadingDateType Get Return Me.latestMeterReadingDateField @@ -35717,9 +35717,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestMeterReadingDateField = value End Set End Property - + ''' - _ + Public Property LatestMeterQuantity() As LatestMeterQuantityType Get Return Me.latestMeterQuantityField @@ -35728,9 +35728,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestMeterQuantityField = value End Set End Property - + ''' - _ + Public Property PreviousMeterReadingMethod() As PreviousMeterReadingMethodType Get Return Me.previousMeterReadingMethodField @@ -35739,9 +35739,9 @@ Namespace Peppol.BISBilling30Invoice Me.previousMeterReadingMethodField = value End Set End Property - + ''' - _ + Public Property PreviousMeterReadingMethodCode() As PreviousMeterReadingMethodCodeType Get Return Me.previousMeterReadingMethodCodeField @@ -35750,9 +35750,9 @@ Namespace Peppol.BISBilling30Invoice Me.previousMeterReadingMethodCodeField = value End Set End Property - + ''' - _ + Public Property LatestMeterReadingMethod() As LatestMeterReadingMethodType Get Return Me.latestMeterReadingMethodField @@ -35761,9 +35761,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestMeterReadingMethodField = value End Set End Property - + ''' - _ + Public Property LatestMeterReadingMethodCode() As LatestMeterReadingMethodCodeType Get Return Me.latestMeterReadingMethodCodeField @@ -35772,9 +35772,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestMeterReadingMethodCodeField = value End Set End Property - + ''' - _ + Public Property MeterReadingComments() As MeterReadingCommentsType() Get Return Me.meterReadingCommentsField @@ -35783,9 +35783,9 @@ Namespace Peppol.BISBilling30Invoice Me.meterReadingCommentsField = value End Set End Property - + ''' - _ + Public Property DeliveredQuantity() As DeliveredQuantityType Get Return Me.deliveredQuantityField @@ -35795,28 +35795,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MeterPropertyType - + Private nameField As NameType1 - + Private nameCodeField As NameCodeType - + Private valueField As ValueType - + Private valueQuantityField As ValueQuantityType - + Private valueQualifierField() As ValueQualifierType - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -35825,9 +35825,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' - _ + Public Property NameCode() As NameCodeType Get Return Me.nameCodeField @@ -35836,9 +35836,9 @@ Namespace Peppol.BISBilling30Invoice Me.nameCodeField = value End Set End Property - + ''' - _ + Public Property Value() As ValueType Get Return Me.valueField @@ -35847,9 +35847,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueField = value End Set End Property - + ''' - _ + Public Property ValueQuantity() As ValueQuantityType Get Return Me.valueQuantityField @@ -35858,9 +35858,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueQuantityField = value End Set End Property - + ''' - _ + Public Property ValueQualifier() As ValueQualifierType() Get Return Me.valueQualifierField @@ -35870,22 +35870,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContractingActivityType - + Private activityTypeCodeField As ActivityTypeCodeType - + Private activityTypeField As ActivityTypeType - + ''' - _ + Public Property ActivityTypeCode() As ActivityTypeCodeType Get Return Me.activityTypeCodeField @@ -35894,9 +35894,9 @@ Namespace Peppol.BISBilling30Invoice Me.activityTypeCodeField = value End Set End Property - + ''' - _ + Public Property ActivityType() As ActivityTypeType Get Return Me.activityTypeField @@ -35906,26 +35906,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContractingPartyType - + Private buyerProfileURIField As BuyerProfileURIType - + Private contractingPartyType1Field() As ContractingPartyTypeType - + Private contractingActivityField() As ContractingActivityType - + Private partyField As PartyType - + ''' - _ + Public Property BuyerProfileURI() As BuyerProfileURIType Get Return Me.buyerProfileURIField @@ -35934,9 +35934,9 @@ Namespace Peppol.BISBilling30Invoice Me.buyerProfileURIField = value End Set End Property - + ''' - _ + Public Property ContractingPartyType1() As ContractingPartyTypeType() Get Return Me.contractingPartyType1Field @@ -35945,9 +35945,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractingPartyType1Field = value End Set End Property - + ''' - _ + Public Property ContractingActivity() As ContractingActivityType() Get Return Me.contractingActivityField @@ -35956,7 +35956,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractingActivityField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -35967,22 +35967,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ContractingPartyTypeType - + Private partyTypeCodeField As PartyTypeCodeType - + Private partyTypeField As PartyTypeType - + ''' - _ + Public Property PartyTypeCode() As PartyTypeCodeType Get Return Me.partyTypeCodeField @@ -35991,9 +35991,9 @@ Namespace Peppol.BISBilling30Invoice Me.partyTypeCodeField = value End Set End Property - + ''' - _ + Public Property PartyType() As PartyTypeType Get Return Me.partyTypeField @@ -36003,74 +36003,74 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class CreditNoteLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private creditedQuantityField As CreditedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxPointDateField As TaxPointDateType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private freeOfChargeIndicatorField As FreeOfChargeIndicatorType - + Private invoicePeriodField() As PeriodType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private discrepancyResponseField() As ResponseType - + Private despatchLineReferenceField() As LineReferenceType - + Private receiptLineReferenceField() As LineReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private pricingReferenceField As PricingReferenceType - + Private originatorPartyField As PartyType - + Private deliveryField() As DeliveryType - + Private paymentTermsField() As PaymentTermsType - + Private taxTotalField() As TaxTotalType - + Private allowanceChargeField() As AllowanceChargeType - + Private itemField As ItemType - + Private priceField As PriceType - + Private deliveryTermsField() As DeliveryTermsType - + Private subCreditNoteLineField() As CreditNoteLineType - + Private itemPriceExtensionField As PriceExtensionType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -36079,9 +36079,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -36090,9 +36090,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -36101,9 +36101,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property CreditedQuantity() As CreditedQuantityType Get Return Me.creditedQuantityField @@ -36112,9 +36112,9 @@ Namespace Peppol.BISBilling30Invoice Me.creditedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -36123,9 +36123,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -36134,9 +36134,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -36145,9 +36145,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -36156,9 +36156,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -36167,9 +36167,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property FreeOfChargeIndicator() As FreeOfChargeIndicatorType Get Return Me.freeOfChargeIndicatorField @@ -36178,9 +36178,9 @@ Namespace Peppol.BISBilling30Invoice Me.freeOfChargeIndicatorField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -36189,9 +36189,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -36200,9 +36200,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DiscrepancyResponse() As ResponseType() Get Return Me.discrepancyResponseField @@ -36211,9 +36211,9 @@ Namespace Peppol.BISBilling30Invoice Me.discrepancyResponseField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -36222,9 +36222,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptLineReference() As LineReferenceType() Get Return Me.receiptLineReferenceField @@ -36233,9 +36233,9 @@ Namespace Peppol.BISBilling30Invoice Me.receiptLineReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -36244,9 +36244,9 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -36255,7 +36255,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -36265,7 +36265,7 @@ Namespace Peppol.BISBilling30Invoice Me.pricingReferenceField = value End Set End Property - + ''' Public Property OriginatorParty() As PartyType Get @@ -36275,9 +36275,9 @@ Namespace Peppol.BISBilling30Invoice Me.originatorPartyField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -36286,9 +36286,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -36297,9 +36297,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -36308,9 +36308,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -36319,7 +36319,7 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -36329,7 +36329,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -36339,9 +36339,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -36350,9 +36350,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' - _ + Public Property SubCreditNoteLine() As CreditNoteLineType() Get Return Me.subCreditNoteLineField @@ -36361,7 +36361,7 @@ Namespace Peppol.BISBilling30Invoice Me.subCreditNoteLineField = value End Set End Property - + ''' Public Property ItemPriceExtension() As PriceExtensionType Get @@ -36372,60 +36372,60 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class DebitNoteLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private debitedQuantityField As DebitedQuantityType - + Private lineExtensionAmountField As LineExtensionAmountType - + Private taxPointDateField As TaxPointDateType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private discrepancyResponseField() As ResponseType - + Private despatchLineReferenceField() As LineReferenceType - + Private receiptLineReferenceField() As LineReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private pricingReferenceField As PricingReferenceType - + Private deliveryField() As DeliveryType - + Private taxTotalField() As TaxTotalType - + Private allowanceChargeField() As AllowanceChargeType - + Private itemField As ItemType - + Private priceField As PriceType - + Private subDebitNoteLineField() As DebitNoteLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -36434,9 +36434,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -36445,9 +36445,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -36456,9 +36456,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property DebitedQuantity() As DebitedQuantityType Get Return Me.debitedQuantityField @@ -36467,9 +36467,9 @@ Namespace Peppol.BISBilling30Invoice Me.debitedQuantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -36478,9 +36478,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -36489,9 +36489,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -36500,9 +36500,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -36511,9 +36511,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -36522,9 +36522,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property DiscrepancyResponse() As ResponseType() Get Return Me.discrepancyResponseField @@ -36533,9 +36533,9 @@ Namespace Peppol.BISBilling30Invoice Me.discrepancyResponseField = value End Set End Property - + ''' - _ + Public Property DespatchLineReference() As LineReferenceType() Get Return Me.despatchLineReferenceField @@ -36544,9 +36544,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchLineReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptLineReference() As LineReferenceType() Get Return Me.receiptLineReferenceField @@ -36555,9 +36555,9 @@ Namespace Peppol.BISBilling30Invoice Me.receiptLineReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -36566,9 +36566,9 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -36577,7 +36577,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property PricingReference() As PricingReferenceType Get @@ -36587,9 +36587,9 @@ Namespace Peppol.BISBilling30Invoice Me.pricingReferenceField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -36598,9 +36598,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -36609,9 +36609,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -36620,7 +36620,7 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -36630,7 +36630,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' Public Property Price() As PriceType Get @@ -36640,9 +36640,9 @@ Namespace Peppol.BISBilling30Invoice Me.priceField = value End Set End Property - + ''' - _ + Public Property SubDebitNoteLine() As DebitNoteLineType() Get Return Me.subDebitNoteLineField @@ -36652,28 +36652,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EconomicOperatorShortListType - + Private limitationDescriptionField() As LimitationDescriptionType - + Private expectedQuantityField As ExpectedQuantityType - + Private maximumQuantityField As MaximumQuantityType - + Private minimumQuantityField As MinimumQuantityType - + Private preSelectedPartyField() As PartyType - + ''' - _ + Public Property LimitationDescription() As LimitationDescriptionType() Get Return Me.limitationDescriptionField @@ -36682,9 +36682,9 @@ Namespace Peppol.BISBilling30Invoice Me.limitationDescriptionField = value End Set End Property - + ''' - _ + Public Property ExpectedQuantity() As ExpectedQuantityType Get Return Me.expectedQuantityField @@ -36693,9 +36693,9 @@ Namespace Peppol.BISBilling30Invoice Me.expectedQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumQuantity() As MaximumQuantityType Get Return Me.maximumQuantityField @@ -36704,9 +36704,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumQuantityField = value End Set End Property - + ''' - _ + Public Property MinimumQuantity() As MinimumQuantityType Get Return Me.minimumQuantityField @@ -36715,9 +36715,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumQuantityField = value End Set End Property - + ''' - _ + Public Property PreSelectedParty() As PartyType() Get Return Me.preSelectedPartyField @@ -36727,28 +36727,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EndorsementType - + Private documentIDField As DocumentIDType - + Private approvalStatusField As ApprovalStatusType - + Private remarksField() As RemarksType - + Private endorserPartyField As EndorserPartyType - + Private signatureField() As SignatureType - + ''' - _ + Public Property DocumentID() As DocumentIDType Get Return Me.documentIDField @@ -36757,9 +36757,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentIDField = value End Set End Property - + ''' - _ + Public Property ApprovalStatus() As ApprovalStatusType Get Return Me.approvalStatusField @@ -36768,9 +36768,9 @@ Namespace Peppol.BISBilling30Invoice Me.approvalStatusField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -36779,7 +36779,7 @@ Namespace Peppol.BISBilling30Invoice Me.remarksField = value End Set End Property - + ''' Public Property EndorserParty() As EndorserPartyType Get @@ -36789,9 +36789,9 @@ Namespace Peppol.BISBilling30Invoice Me.endorserPartyField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -36801,36 +36801,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EventType - + Private identificationIDField As IdentificationIDType - + Private occurrenceDateField As OccurrenceDateType - + Private occurrenceTimeField As OccurrenceTimeType - + Private typeCodeField As TypeCodeType - + Private descriptionField() As DescriptionType - + Private completionIndicatorField As CompletionIndicatorType - + Private currentStatusField() As StatusType - + Private contactField() As ContactType - + Private occurenceLocationField As LocationType1 - + ''' - _ + Public Property IdentificationID() As IdentificationIDType Get Return Me.identificationIDField @@ -36839,9 +36839,9 @@ Namespace Peppol.BISBilling30Invoice Me.identificationIDField = value End Set End Property - + ''' - _ + Public Property OccurrenceDate() As OccurrenceDateType Get Return Me.occurrenceDateField @@ -36850,9 +36850,9 @@ Namespace Peppol.BISBilling30Invoice Me.occurrenceDateField = value End Set End Property - + ''' - _ + Public Property OccurrenceTime() As OccurrenceTimeType Get Return Me.occurrenceTimeField @@ -36861,9 +36861,9 @@ Namespace Peppol.BISBilling30Invoice Me.occurrenceTimeField = value End Set End Property - + ''' - _ + Public Property TypeCode() As TypeCodeType Get Return Me.typeCodeField @@ -36872,9 +36872,9 @@ Namespace Peppol.BISBilling30Invoice Me.typeCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -36883,9 +36883,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property CompletionIndicator() As CompletionIndicatorType Get Return Me.completionIndicatorField @@ -36894,9 +36894,9 @@ Namespace Peppol.BISBilling30Invoice Me.completionIndicatorField = value End Set End Property - + ''' - _ + Public Property CurrentStatus() As StatusType() Get Return Me.currentStatusField @@ -36905,9 +36905,9 @@ Namespace Peppol.BISBilling30Invoice Me.currentStatusField = value End Set End Property - + ''' - _ + Public Property Contact() As ContactType() Get Return Me.contactField @@ -36916,7 +36916,7 @@ Namespace Peppol.BISBilling30Invoice Me.contactField = value End Set End Property - + ''' Public Property OccurenceLocation() As LocationType1 Get @@ -36927,24 +36927,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EventCommentType - + Private commentField As CommentType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + ''' - _ + Public Property Comment() As CommentType Get Return Me.commentField @@ -36953,9 +36953,9 @@ Namespace Peppol.BISBilling30Invoice Me.commentField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -36964,9 +36964,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -36976,26 +36976,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EventLineItemType - + Private lineNumberNumericField As LineNumberNumericType - + Private participatingLocationsLocationField As LocationType1 - + Private retailPlannedImpactField() As RetailPlannedImpactType - + Private supplyItemField As ItemType - + ''' - _ + Public Property LineNumberNumeric() As LineNumberNumericType Get Return Me.lineNumberNumericField @@ -37004,7 +37004,7 @@ Namespace Peppol.BISBilling30Invoice Me.lineNumberNumericField = value End Set End Property - + ''' Public Property ParticipatingLocationsLocation() As LocationType1 Get @@ -37014,9 +37014,9 @@ Namespace Peppol.BISBilling30Invoice Me.participatingLocationsLocationField = value End Set End Property - + ''' - _ + Public Property RetailPlannedImpact() As RetailPlannedImpactType() Get Return Me.retailPlannedImpactField @@ -37025,7 +37025,7 @@ Namespace Peppol.BISBilling30Invoice Me.retailPlannedImpactField = value End Set End Property - + ''' Public Property SupplyItem() As ItemType Get @@ -37036,26 +37036,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RetailPlannedImpactType - + Private amountField As AmountType2 - + Private forecastPurposeCodeField As ForecastPurposeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private periodField As PeriodType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -37064,9 +37064,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property ForecastPurposeCode() As ForecastPurposeCodeType Get Return Me.forecastPurposeCodeField @@ -37075,9 +37075,9 @@ Namespace Peppol.BISBilling30Invoice Me.forecastPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37086,7 +37086,7 @@ Namespace Peppol.BISBilling30Invoice Me.forecastTypeCodeField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -37097,26 +37097,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EventTacticType - + Private commentField As CommentType - + Private quantityField As QuantityType2 - + Private eventTacticEnumerationField As EventTacticEnumerationType - + Private periodField As PeriodType - + ''' - _ + Public Property Comment() As CommentType Get Return Me.commentField @@ -37125,9 +37125,9 @@ Namespace Peppol.BISBilling30Invoice Me.commentField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -37136,7 +37136,7 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' Public Property EventTacticEnumeration() As EventTacticEnumerationType Get @@ -37146,7 +37146,7 @@ Namespace Peppol.BISBilling30Invoice Me.eventTacticEnumerationField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -37157,26 +37157,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class EventTacticEnumerationType - + Private consumerIncentiveTacticTypeCodeField As ConsumerIncentiveTacticTypeCodeType - + Private displayTacticTypeCodeField As DisplayTacticTypeCodeType - + Private featureTacticTypeCodeField As FeatureTacticTypeCodeType - + Private tradeItemPackingLabelingTypeCodeField As TradeItemPackingLabelingTypeCodeType - + ''' - _ + Public Property ConsumerIncentiveTacticTypeCode() As ConsumerIncentiveTacticTypeCodeType Get Return Me.consumerIncentiveTacticTypeCodeField @@ -37185,9 +37185,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumerIncentiveTacticTypeCodeField = value End Set End Property - + ''' - _ + Public Property DisplayTacticTypeCode() As DisplayTacticTypeCodeType Get Return Me.displayTacticTypeCodeField @@ -37196,9 +37196,9 @@ Namespace Peppol.BISBilling30Invoice Me.displayTacticTypeCodeField = value End Set End Property - + ''' - _ + Public Property FeatureTacticTypeCode() As FeatureTacticTypeCodeType Get Return Me.featureTacticTypeCodeField @@ -37207,9 +37207,9 @@ Namespace Peppol.BISBilling30Invoice Me.featureTacticTypeCodeField = value End Set End Property - + ''' - _ + Public Property TradeItemPackingLabelingTypeCode() As TradeItemPackingLabelingTypeCodeType Get Return Me.tradeItemPackingLabelingTypeCodeField @@ -37219,42 +37219,42 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ExceptionCriteriaLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private thresholdValueComparisonCodeField As ThresholdValueComparisonCodeType - + Private thresholdQuantityField As ThresholdQuantityType - + Private exceptionStatusCodeField As ExceptionStatusCodeType - + Private collaborationPriorityCodeField As CollaborationPriorityCodeType - + Private exceptionResolutionCodeField As ExceptionResolutionCodeType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private effectivePeriodField As PeriodType - + Private supplyItemField() As ItemType - + Private forecastExceptionCriterionLineField As ForecastExceptionCriterionLineType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37263,9 +37263,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37274,9 +37274,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property ThresholdValueComparisonCode() As ThresholdValueComparisonCodeType Get Return Me.thresholdValueComparisonCodeField @@ -37285,9 +37285,9 @@ Namespace Peppol.BISBilling30Invoice Me.thresholdValueComparisonCodeField = value End Set End Property - + ''' - _ + Public Property ThresholdQuantity() As ThresholdQuantityType Get Return Me.thresholdQuantityField @@ -37296,9 +37296,9 @@ Namespace Peppol.BISBilling30Invoice Me.thresholdQuantityField = value End Set End Property - + ''' - _ + Public Property ExceptionStatusCode() As ExceptionStatusCodeType Get Return Me.exceptionStatusCodeField @@ -37307,9 +37307,9 @@ Namespace Peppol.BISBilling30Invoice Me.exceptionStatusCodeField = value End Set End Property - + ''' - _ + Public Property CollaborationPriorityCode() As CollaborationPriorityCodeType Get Return Me.collaborationPriorityCodeField @@ -37318,9 +37318,9 @@ Namespace Peppol.BISBilling30Invoice Me.collaborationPriorityCodeField = value End Set End Property - + ''' - _ + Public Property ExceptionResolutionCode() As ExceptionResolutionCodeType Get Return Me.exceptionResolutionCodeField @@ -37329,9 +37329,9 @@ Namespace Peppol.BISBilling30Invoice Me.exceptionResolutionCodeField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -37340,9 +37340,9 @@ Namespace Peppol.BISBilling30Invoice Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -37351,7 +37351,7 @@ Namespace Peppol.BISBilling30Invoice Me.performanceMetricTypeCodeField = value End Set End Property - + ''' Public Property EffectivePeriod() As PeriodType Get @@ -37361,9 +37361,9 @@ Namespace Peppol.BISBilling30Invoice Me.effectivePeriodField = value End Set End Property - + ''' - _ + Public Property SupplyItem() As ItemType() Get Return Me.supplyItemField @@ -37372,7 +37372,7 @@ Namespace Peppol.BISBilling30Invoice Me.supplyItemField = value End Set End Property - + ''' Public Property ForecastExceptionCriterionLine() As ForecastExceptionCriterionLineType Get @@ -37383,28 +37383,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ForecastExceptionCriterionLineType - + Private forecastPurposeCodeField As ForecastPurposeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private comparisonDataSourceCodeField As ComparisonDataSourceCodeType - + Private dataSourceCodeField As DataSourceCodeType - + Private timeDeltaDaysQuantityField As TimeDeltaDaysQuantityType - + ''' - _ + Public Property ForecastPurposeCode() As ForecastPurposeCodeType Get Return Me.forecastPurposeCodeField @@ -37413,9 +37413,9 @@ Namespace Peppol.BISBilling30Invoice Me.forecastPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37424,9 +37424,9 @@ Namespace Peppol.BISBilling30Invoice Me.forecastTypeCodeField = value End Set End Property - + ''' - _ + Public Property ComparisonDataSourceCode() As ComparisonDataSourceCodeType Get Return Me.comparisonDataSourceCodeField @@ -37435,9 +37435,9 @@ Namespace Peppol.BISBilling30Invoice Me.comparisonDataSourceCodeField = value End Set End Property - + ''' - _ + Public Property DataSourceCode() As DataSourceCodeType Get Return Me.dataSourceCodeField @@ -37446,9 +37446,9 @@ Namespace Peppol.BISBilling30Invoice Me.dataSourceCodeField = value End Set End Property - + ''' - _ + Public Property TimeDeltaDaysQuantity() As TimeDeltaDaysQuantityType Get Return Me.timeDeltaDaysQuantityField @@ -37458,48 +37458,48 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ExceptionNotificationLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private descriptionField() As DescriptionType - + Private exceptionStatusCodeField As ExceptionStatusCodeType - + Private collaborationPriorityCodeField As CollaborationPriorityCodeType - + Private resolutionCodeField As ResolutionCodeType - + Private comparedValueMeasureField As ComparedValueMeasureType - + Private sourceValueMeasureField As SourceValueMeasureType - + Private varianceQuantityField As VarianceQuantityType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private exceptionObservationPeriodField As PeriodType - + Private documentReferenceField() As DocumentReferenceType - + Private forecastExceptionField As ForecastExceptionType - + Private supplyItemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37508,9 +37508,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37519,9 +37519,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -37530,9 +37530,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property ExceptionStatusCode() As ExceptionStatusCodeType Get Return Me.exceptionStatusCodeField @@ -37541,9 +37541,9 @@ Namespace Peppol.BISBilling30Invoice Me.exceptionStatusCodeField = value End Set End Property - + ''' - _ + Public Property CollaborationPriorityCode() As CollaborationPriorityCodeType Get Return Me.collaborationPriorityCodeField @@ -37552,9 +37552,9 @@ Namespace Peppol.BISBilling30Invoice Me.collaborationPriorityCodeField = value End Set End Property - + ''' - _ + Public Property ResolutionCode() As ResolutionCodeType Get Return Me.resolutionCodeField @@ -37563,9 +37563,9 @@ Namespace Peppol.BISBilling30Invoice Me.resolutionCodeField = value End Set End Property - + ''' - _ + Public Property ComparedValueMeasure() As ComparedValueMeasureType Get Return Me.comparedValueMeasureField @@ -37574,9 +37574,9 @@ Namespace Peppol.BISBilling30Invoice Me.comparedValueMeasureField = value End Set End Property - + ''' - _ + Public Property SourceValueMeasure() As SourceValueMeasureType Get Return Me.sourceValueMeasureField @@ -37585,9 +37585,9 @@ Namespace Peppol.BISBilling30Invoice Me.sourceValueMeasureField = value End Set End Property - + ''' - _ + Public Property VarianceQuantity() As VarianceQuantityType Get Return Me.varianceQuantityField @@ -37596,9 +37596,9 @@ Namespace Peppol.BISBilling30Invoice Me.varianceQuantityField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -37607,9 +37607,9 @@ Namespace Peppol.BISBilling30Invoice Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -37618,7 +37618,7 @@ Namespace Peppol.BISBilling30Invoice Me.performanceMetricTypeCodeField = value End Set End Property - + ''' Public Property ExceptionObservationPeriod() As PeriodType Get @@ -37628,9 +37628,9 @@ Namespace Peppol.BISBilling30Invoice Me.exceptionObservationPeriodField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -37639,7 +37639,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property ForecastException() As ForecastExceptionType Get @@ -37649,7 +37649,7 @@ Namespace Peppol.BISBilling30Invoice Me.forecastExceptionField = value End Set End Property - + ''' Public Property SupplyItem() As ItemType Get @@ -37660,34 +37660,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ForecastExceptionType - + Private forecastPurposeCodeField As ForecastPurposeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private dataSourceCodeField As DataSourceCodeType - + Private comparisonDataCodeField As ComparisonDataCodeType - + Private comparisonForecastIssueTimeField As ComparisonForecastIssueTimeType - + Private comparisonForecastIssueDateField As ComparisonForecastIssueDateType - + ''' - _ + Public Property ForecastPurposeCode() As ForecastPurposeCodeType Get Return Me.forecastPurposeCodeField @@ -37696,9 +37696,9 @@ Namespace Peppol.BISBilling30Invoice Me.forecastPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37707,9 +37707,9 @@ Namespace Peppol.BISBilling30Invoice Me.forecastTypeCodeField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -37718,9 +37718,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -37729,9 +37729,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property DataSourceCode() As DataSourceCodeType Get Return Me.dataSourceCodeField @@ -37740,9 +37740,9 @@ Namespace Peppol.BISBilling30Invoice Me.dataSourceCodeField = value End Set End Property - + ''' - _ + Public Property ComparisonDataCode() As ComparisonDataCodeType Get Return Me.comparisonDataCodeField @@ -37751,9 +37751,9 @@ Namespace Peppol.BISBilling30Invoice Me.comparisonDataCodeField = value End Set End Property - + ''' - _ + Public Property ComparisonForecastIssueTime() As ComparisonForecastIssueTimeType Get Return Me.comparisonForecastIssueTimeField @@ -37762,9 +37762,9 @@ Namespace Peppol.BISBilling30Invoice Me.comparisonForecastIssueTimeField = value End Set End Property - + ''' - _ + Public Property ComparisonForecastIssueDate() As ComparisonForecastIssueDateType Get Return Me.comparisonForecastIssueDateField @@ -37774,30 +37774,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ForecastLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private frozenDocumentIndicatorField As FrozenDocumentIndicatorType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private forecastPeriodField As PeriodType - + Private salesItemField As SalesItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37806,9 +37806,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37817,9 +37817,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property FrozenDocumentIndicator() As FrozenDocumentIndicatorType Get Return Me.frozenDocumentIndicatorField @@ -37828,9 +37828,9 @@ Namespace Peppol.BISBilling30Invoice Me.frozenDocumentIndicatorField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -37839,7 +37839,7 @@ Namespace Peppol.BISBilling30Invoice Me.forecastTypeCodeField = value End Set End Property - + ''' Public Property ForecastPeriod() As PeriodType Get @@ -37849,7 +37849,7 @@ Namespace Peppol.BISBilling30Invoice Me.forecastPeriodField = value End Set End Property - + ''' Public Property SalesItem() As SalesItemType Get @@ -37860,36 +37860,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ForecastRevisionLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private descriptionField() As DescriptionType - + Private revisedForecastLineIDField As RevisedForecastLineIDType - + Private sourceForecastIssueDateField As SourceForecastIssueDateType - + Private sourceForecastIssueTimeField As SourceForecastIssueTimeType - + Private adjustmentReasonCodeField As AdjustmentReasonCodeType - + Private forecastPeriodField As PeriodType - + Private salesItemField As SalesItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -37898,9 +37898,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -37909,9 +37909,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -37920,9 +37920,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property RevisedForecastLineID() As RevisedForecastLineIDType Get Return Me.revisedForecastLineIDField @@ -37931,9 +37931,9 @@ Namespace Peppol.BISBilling30Invoice Me.revisedForecastLineIDField = value End Set End Property - + ''' - _ + Public Property SourceForecastIssueDate() As SourceForecastIssueDateType Get Return Me.sourceForecastIssueDateField @@ -37942,9 +37942,9 @@ Namespace Peppol.BISBilling30Invoice Me.sourceForecastIssueDateField = value End Set End Property - + ''' - _ + Public Property SourceForecastIssueTime() As SourceForecastIssueTimeType Get Return Me.sourceForecastIssueTimeField @@ -37953,9 +37953,9 @@ Namespace Peppol.BISBilling30Invoice Me.sourceForecastIssueTimeField = value End Set End Property - + ''' - _ + Public Property AdjustmentReasonCode() As AdjustmentReasonCodeType Get Return Me.adjustmentReasonCodeField @@ -37964,7 +37964,7 @@ Namespace Peppol.BISBilling30Invoice Me.adjustmentReasonCodeField = value End Set End Property - + ''' Public Property ForecastPeriod() As PeriodType Get @@ -37974,7 +37974,7 @@ Namespace Peppol.BISBilling30Invoice Me.forecastPeriodField = value End Set End Property - + ''' Public Property SalesItem() As SalesItemType Get @@ -37985,30 +37985,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class FrameworkAgreementType - + Private expectedOperatorQuantityField As ExpectedOperatorQuantityType - + Private maximumOperatorQuantityField As MaximumOperatorQuantityType - + Private justificationField() As JustificationType - + Private frequencyField() As FrequencyType - + Private durationPeriodField As PeriodType - + Private subsequentProcessTenderRequirementField() As TenderRequirementType - + ''' - _ + Public Property ExpectedOperatorQuantity() As ExpectedOperatorQuantityType Get Return Me.expectedOperatorQuantityField @@ -38017,9 +38017,9 @@ Namespace Peppol.BISBilling30Invoice Me.expectedOperatorQuantityField = value End Set End Property - + ''' - _ + Public Property MaximumOperatorQuantity() As MaximumOperatorQuantityType Get Return Me.maximumOperatorQuantityField @@ -38028,9 +38028,9 @@ Namespace Peppol.BISBilling30Invoice Me.maximumOperatorQuantityField = value End Set End Property - + ''' - _ + Public Property Justification() As JustificationType() Get Return Me.justificationField @@ -38039,9 +38039,9 @@ Namespace Peppol.BISBilling30Invoice Me.justificationField = value End Set End Property - + ''' - _ + Public Property Frequency() As FrequencyType() Get Return Me.frequencyField @@ -38050,7 +38050,7 @@ Namespace Peppol.BISBilling30Invoice Me.frequencyField = value End Set End Property - + ''' Public Property DurationPeriod() As PeriodType Get @@ -38060,9 +38060,9 @@ Namespace Peppol.BISBilling30Invoice Me.durationPeriodField = value End Set End Property - + ''' - _ + Public Property SubsequentProcessTenderRequirement() As TenderRequirementType() Get Return Me.subsequentProcessTenderRequirementField @@ -38072,32 +38072,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ImmobilizedSecurityType - + Private immobilizationCertificateIDField As ImmobilizationCertificateIDType - + Private securityIDField As SecurityIDType - + Private issueDateField As IssueDateType - + Private faceValueAmountField As FaceValueAmountType - + Private marketValueAmountField As MarketValueAmountType - + Private sharesNumberQuantityField As SharesNumberQuantityType - + Private issuerPartyField As PartyType - + ''' - _ + Public Property ImmobilizationCertificateID() As ImmobilizationCertificateIDType Get Return Me.immobilizationCertificateIDField @@ -38106,9 +38106,9 @@ Namespace Peppol.BISBilling30Invoice Me.immobilizationCertificateIDField = value End Set End Property - + ''' - _ + Public Property SecurityID() As SecurityIDType Get Return Me.securityIDField @@ -38117,9 +38117,9 @@ Namespace Peppol.BISBilling30Invoice Me.securityIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -38128,9 +38128,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property FaceValueAmount() As FaceValueAmountType Get Return Me.faceValueAmountField @@ -38139,9 +38139,9 @@ Namespace Peppol.BISBilling30Invoice Me.faceValueAmountField = value End Set End Property - + ''' - _ + Public Property MarketValueAmount() As MarketValueAmountType Get Return Me.marketValueAmountField @@ -38150,9 +38150,9 @@ Namespace Peppol.BISBilling30Invoice Me.marketValueAmountField = value End Set End Property - + ''' - _ + Public Property SharesNumberQuantity() As SharesNumberQuantityType Get Return Me.sharesNumberQuantityField @@ -38161,7 +38161,7 @@ Namespace Peppol.BISBilling30Invoice Me.sharesNumberQuantityField = value End Set End Property - + ''' Public Property IssuerParty() As PartyType Get @@ -38172,28 +38172,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class InstructionForReturnsLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private manufacturerPartyField As PartyType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -38202,9 +38202,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38213,9 +38213,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -38224,7 +38224,7 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' Public Property ManufacturerParty() As PartyType Get @@ -38234,7 +38234,7 @@ Namespace Peppol.BISBilling30Invoice Me.manufacturerPartyField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38245,34 +38245,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class InventoryReportLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private inventoryValueAmountField As InventoryValueAmountType - + Private availabilityDateField As AvailabilityDateType - + Private availabilityStatusCodeField As AvailabilityStatusCodeType - + Private itemField As ItemType - + Private inventoryLocationField As LocationType1 - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -38281,9 +38281,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38292,9 +38292,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -38303,9 +38303,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property InventoryValueAmount() As InventoryValueAmountType Get Return Me.inventoryValueAmountField @@ -38314,9 +38314,9 @@ Namespace Peppol.BISBilling30Invoice Me.inventoryValueAmountField = value End Set End Property - + ''' - _ + Public Property AvailabilityDate() As AvailabilityDateType Get Return Me.availabilityDateField @@ -38325,9 +38325,9 @@ Namespace Peppol.BISBilling30Invoice Me.availabilityDateField = value End Set End Property - + ''' - _ + Public Property AvailabilityStatusCode() As AvailabilityStatusCodeType Get Return Me.availabilityStatusCodeField @@ -38336,7 +38336,7 @@ Namespace Peppol.BISBilling30Invoice Me.availabilityStatusCodeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38346,7 +38346,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' Public Property InventoryLocation() As LocationType1 Get @@ -38357,30 +38357,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemInformationRequestLineType - + Private timeFrequencyCodeField As TimeFrequencyCodeType - + Private supplyChainActivityTypeCodeField As SupplyChainActivityTypeCodeType - + Private forecastTypeCodeField As ForecastTypeCodeType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private periodField() As PeriodType - + Private salesItemField() As SalesItemType - + ''' - _ + Public Property TimeFrequencyCode() As TimeFrequencyCodeType Get Return Me.timeFrequencyCodeField @@ -38389,9 +38389,9 @@ Namespace Peppol.BISBilling30Invoice Me.timeFrequencyCodeField = value End Set End Property - + ''' - _ + Public Property SupplyChainActivityTypeCode() As SupplyChainActivityTypeCodeType Get Return Me.supplyChainActivityTypeCodeField @@ -38400,9 +38400,9 @@ Namespace Peppol.BISBilling30Invoice Me.supplyChainActivityTypeCodeField = value End Set End Property - + ''' - _ + Public Property ForecastTypeCode() As ForecastTypeCodeType Get Return Me.forecastTypeCodeField @@ -38411,9 +38411,9 @@ Namespace Peppol.BISBilling30Invoice Me.forecastTypeCodeField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -38422,9 +38422,9 @@ Namespace Peppol.BISBilling30Invoice Me.performanceMetricTypeCodeField = value End Set End Property - + ''' - _ + Public Property Period() As PeriodType() Get Return Me.periodField @@ -38433,9 +38433,9 @@ Namespace Peppol.BISBilling30Invoice Me.periodField = value End Set End Property - + ''' - _ + Public Property SalesItem() As SalesItemType() Get Return Me.salesItemField @@ -38445,38 +38445,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ItemManagementProfileType - + Private frozenPeriodDaysNumericField As FrozenPeriodDaysNumericType - + Private minimumInventoryQuantityField As MinimumInventoryQuantityType - + Private multipleOrderQuantityField As MultipleOrderQuantityType - + Private orderIntervalDaysNumericField As OrderIntervalDaysNumericType - + Private replenishmentOwnerDescriptionField() As ReplenishmentOwnerDescriptionType - + Private targetServicePercentField As TargetServicePercentType - + Private targetInventoryQuantityField As TargetInventoryQuantityType - + Private effectivePeriodField As PeriodType - + Private itemField As ItemType - + Private itemLocationQuantityField As ItemLocationQuantityType - + ''' - _ + Public Property FrozenPeriodDaysNumeric() As FrozenPeriodDaysNumericType Get Return Me.frozenPeriodDaysNumericField @@ -38485,9 +38485,9 @@ Namespace Peppol.BISBilling30Invoice Me.frozenPeriodDaysNumericField = value End Set End Property - + ''' - _ + Public Property MinimumInventoryQuantity() As MinimumInventoryQuantityType Get Return Me.minimumInventoryQuantityField @@ -38496,9 +38496,9 @@ Namespace Peppol.BISBilling30Invoice Me.minimumInventoryQuantityField = value End Set End Property - + ''' - _ + Public Property MultipleOrderQuantity() As MultipleOrderQuantityType Get Return Me.multipleOrderQuantityField @@ -38507,9 +38507,9 @@ Namespace Peppol.BISBilling30Invoice Me.multipleOrderQuantityField = value End Set End Property - + ''' - _ + Public Property OrderIntervalDaysNumeric() As OrderIntervalDaysNumericType Get Return Me.orderIntervalDaysNumericField @@ -38518,9 +38518,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderIntervalDaysNumericField = value End Set End Property - + ''' - _ + Public Property ReplenishmentOwnerDescription() As ReplenishmentOwnerDescriptionType() Get Return Me.replenishmentOwnerDescriptionField @@ -38529,9 +38529,9 @@ Namespace Peppol.BISBilling30Invoice Me.replenishmentOwnerDescriptionField = value End Set End Property - + ''' - _ + Public Property TargetServicePercent() As TargetServicePercentType Get Return Me.targetServicePercentField @@ -38540,9 +38540,9 @@ Namespace Peppol.BISBilling30Invoice Me.targetServicePercentField = value End Set End Property - + ''' - _ + Public Property TargetInventoryQuantity() As TargetInventoryQuantityType Get Return Me.targetInventoryQuantityField @@ -38551,7 +38551,7 @@ Namespace Peppol.BISBilling30Invoice Me.targetInventoryQuantityField = value End Set End Property - + ''' Public Property EffectivePeriod() As PeriodType Get @@ -38561,7 +38561,7 @@ Namespace Peppol.BISBilling30Invoice Me.effectivePeriodField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38571,7 +38571,7 @@ Namespace Peppol.BISBilling30Invoice Me.itemField = value End Set End Property - + ''' Public Property ItemLocationQuantity() As ItemLocationQuantityType Get @@ -38582,24 +38582,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class OnAccountPaymentType - + Private estimatedConsumedQuantityField As EstimatedConsumedQuantityType - + Private noteField() As NoteType - + Private paymentTermsField() As PaymentTermsType - + ''' - _ + Public Property EstimatedConsumedQuantity() As EstimatedConsumedQuantityType Get Return Me.estimatedConsumedQuantityField @@ -38608,9 +38608,9 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedConsumedQuantityField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38619,9 +38619,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -38631,22 +38631,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class MiscellaneousEventType - + Private miscellaneousEventTypeCodeField As MiscellaneousEventTypeCodeType - + Private eventLineItemField() As EventLineItemType - + ''' - _ + Public Property MiscellaneousEventTypeCode() As MiscellaneousEventTypeCodeType Get Return Me.miscellaneousEventTypeCodeField @@ -38655,9 +38655,9 @@ Namespace Peppol.BISBilling30Invoice Me.miscellaneousEventTypeCodeField = value End Set End Property - + ''' - _ + Public Property EventLineItem() As EventLineItemType() Get Return Me.eventLineItemField @@ -38667,30 +38667,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class NotificationRequirementType - + Private notificationTypeCodeField As NotificationTypeCodeType - + Private postEventNotificationDurationMeasureField As PostEventNotificationDurationMeasureType - + Private preEventNotificationDurationMeasureField As PreEventNotificationDurationMeasureType - + Private notifyPartyField() As PartyType - + Private notificationPeriodField() As PeriodType - + Private notificationLocationField() As LocationType1 - + ''' - _ + Public Property NotificationTypeCode() As NotificationTypeCodeType Get Return Me.notificationTypeCodeField @@ -38699,9 +38699,9 @@ Namespace Peppol.BISBilling30Invoice Me.notificationTypeCodeField = value End Set End Property - + ''' - _ + Public Property PostEventNotificationDurationMeasure() As PostEventNotificationDurationMeasureType Get Return Me.postEventNotificationDurationMeasureField @@ -38710,9 +38710,9 @@ Namespace Peppol.BISBilling30Invoice Me.postEventNotificationDurationMeasureField = value End Set End Property - + ''' - _ + Public Property PreEventNotificationDurationMeasure() As PreEventNotificationDurationMeasureType Get Return Me.preEventNotificationDurationMeasureField @@ -38721,9 +38721,9 @@ Namespace Peppol.BISBilling30Invoice Me.preEventNotificationDurationMeasureField = value End Set End Property - + ''' - _ + Public Property NotifyParty() As PartyType() Get Return Me.notifyPartyField @@ -38732,9 +38732,9 @@ Namespace Peppol.BISBilling30Invoice Me.notifyPartyField = value End Set End Property - + ''' - _ + Public Property NotificationPeriod() As PeriodType() Get Return Me.notificationPeriodField @@ -38743,9 +38743,9 @@ Namespace Peppol.BISBilling30Invoice Me.notificationPeriodField = value End Set End Property - + ''' - _ + Public Property NotificationLocation() As LocationType1() Get Return Me.notificationLocationField @@ -38755,38 +38755,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class OrderLineType - + Private substitutionStatusCodeField As SubstitutionStatusCodeType - + Private noteField() As NoteType - + Private lineItemField As LineItemType - + Private sellerProposedSubstituteLineItemField() As LineItemType - + Private sellerSubstitutedLineItemField() As LineItemType - + Private buyerProposedSubstituteLineItemField() As LineItemType - + Private catalogueLineReferenceField As LineReferenceType - + Private quotationLineReferenceField As LineReferenceType - + Private orderLineReferenceField() As OrderLineReferenceType - + Private documentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property SubstitutionStatusCode() As SubstitutionStatusCodeType Get Return Me.substitutionStatusCodeField @@ -38795,9 +38795,9 @@ Namespace Peppol.BISBilling30Invoice Me.substitutionStatusCodeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38806,7 +38806,7 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' Public Property LineItem() As LineItemType Get @@ -38816,9 +38816,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineItemField = value End Set End Property - + ''' - _ + Public Property SellerProposedSubstituteLineItem() As LineItemType() Get Return Me.sellerProposedSubstituteLineItemField @@ -38827,9 +38827,9 @@ Namespace Peppol.BISBilling30Invoice Me.sellerProposedSubstituteLineItemField = value End Set End Property - + ''' - _ + Public Property SellerSubstitutedLineItem() As LineItemType() Get Return Me.sellerSubstitutedLineItemField @@ -38838,9 +38838,9 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSubstitutedLineItemField = value End Set End Property - + ''' - _ + Public Property BuyerProposedSubstituteLineItem() As LineItemType() Get Return Me.buyerProposedSubstituteLineItemField @@ -38849,7 +38849,7 @@ Namespace Peppol.BISBilling30Invoice Me.buyerProposedSubstituteLineItemField = value End Set End Property - + ''' Public Property CatalogueLineReference() As LineReferenceType Get @@ -38859,7 +38859,7 @@ Namespace Peppol.BISBilling30Invoice Me.catalogueLineReferenceField = value End Set End Property - + ''' Public Property QuotationLineReference() As LineReferenceType Get @@ -38869,9 +38869,9 @@ Namespace Peppol.BISBilling30Invoice Me.quotationLineReferenceField = value End Set End Property - + ''' - _ + Public Property OrderLineReference() As OrderLineReferenceType() Get Return Me.orderLineReferenceField @@ -38880,9 +38880,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderLineReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -38892,30 +38892,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PerformanceDataLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private performanceValueQuantityField As PerformanceValueQuantityType - + Private performanceMetricTypeCodeField As PerformanceMetricTypeCodeType - + Private periodField As PeriodType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -38924,9 +38924,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -38935,9 +38935,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property PerformanceValueQuantity() As PerformanceValueQuantityType Get Return Me.performanceValueQuantityField @@ -38946,9 +38946,9 @@ Namespace Peppol.BISBilling30Invoice Me.performanceValueQuantityField = value End Set End Property - + ''' - _ + Public Property PerformanceMetricTypeCode() As PerformanceMetricTypeCodeType Get Return Me.performanceMetricTypeCodeField @@ -38957,7 +38957,7 @@ Namespace Peppol.BISBilling30Invoice Me.performanceMetricTypeCodeField = value End Set End Property - + ''' Public Property Period() As PeriodType Get @@ -38967,7 +38967,7 @@ Namespace Peppol.BISBilling30Invoice Me.periodField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -38978,26 +38978,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ProcessJustificationType - + Private previousCancellationReasonCodeField As PreviousCancellationReasonCodeType - + Private processReasonCodeField As ProcessReasonCodeType - + Private processReasonField() As ProcessReasonType - + Private descriptionField() As DescriptionType - + ''' - _ + Public Property PreviousCancellationReasonCode() As PreviousCancellationReasonCodeType Get Return Me.previousCancellationReasonCodeField @@ -39006,9 +39006,9 @@ Namespace Peppol.BISBilling30Invoice Me.previousCancellationReasonCodeField = value End Set End Property - + ''' - _ + Public Property ProcessReasonCode() As ProcessReasonCodeType Get Return Me.processReasonCodeField @@ -39017,9 +39017,9 @@ Namespace Peppol.BISBilling30Invoice Me.processReasonCodeField = value End Set End Property - + ''' - _ + Public Property ProcessReason() As ProcessReasonType() Get Return Me.processReasonField @@ -39028,9 +39028,9 @@ Namespace Peppol.BISBilling30Invoice Me.processReasonField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -39040,26 +39040,26 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ProjectReferenceType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private workPhaseReferenceField() As WorkPhaseReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39068,9 +39068,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -39079,9 +39079,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -39090,9 +39090,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property WorkPhaseReference() As WorkPhaseReferenceType() Get Return Me.workPhaseReferenceField @@ -39102,32 +39102,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class WorkPhaseReferenceType - + Private idField As IDType - + Private workPhaseCodeField As WorkPhaseCodeType - + Private workPhaseField() As WorkPhaseType - + Private progressPercentField As ProgressPercentType - + Private startDateField As StartDateType - + Private endDateField As EndDateType - + Private workOrderDocumentReferenceField() As DocumentReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39136,9 +39136,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property WorkPhaseCode() As WorkPhaseCodeType Get Return Me.workPhaseCodeField @@ -39147,9 +39147,9 @@ Namespace Peppol.BISBilling30Invoice Me.workPhaseCodeField = value End Set End Property - + ''' - _ + Public Property WorkPhase() As WorkPhaseType() Get Return Me.workPhaseField @@ -39158,9 +39158,9 @@ Namespace Peppol.BISBilling30Invoice Me.workPhaseField = value End Set End Property - + ''' - _ + Public Property ProgressPercent() As ProgressPercentType Get Return Me.progressPercentField @@ -39169,9 +39169,9 @@ Namespace Peppol.BISBilling30Invoice Me.progressPercentField = value End Set End Property - + ''' - _ + Public Property StartDate() As StartDateType Get Return Me.startDateField @@ -39180,9 +39180,9 @@ Namespace Peppol.BISBilling30Invoice Me.startDateField = value End Set End Property - + ''' - _ + Public Property EndDate() As EndDateType Get Return Me.endDateField @@ -39191,9 +39191,9 @@ Namespace Peppol.BISBilling30Invoice Me.endDateField = value End Set End Property - + ''' - _ + Public Property WorkOrderDocumentReference() As DocumentReferenceType() Get Return Me.workOrderDocumentReferenceField @@ -39203,28 +39203,28 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PromotionalEventType - + Private promotionalEventTypeCodeField As PromotionalEventTypeCodeType - + Private submissionDateField As SubmissionDateType - + Private firstShipmentAvailibilityDateField As FirstShipmentAvailibilityDateType - + Private latestProposalAcceptanceDateField As LatestProposalAcceptanceDateType - + Private promotionalSpecificationField() As PromotionalSpecificationType - + ''' - _ + Public Property PromotionalEventTypeCode() As PromotionalEventTypeCodeType Get Return Me.promotionalEventTypeCodeField @@ -39233,9 +39233,9 @@ Namespace Peppol.BISBilling30Invoice Me.promotionalEventTypeCodeField = value End Set End Property - + ''' - _ + Public Property SubmissionDate() As SubmissionDateType Get Return Me.submissionDateField @@ -39244,9 +39244,9 @@ Namespace Peppol.BISBilling30Invoice Me.submissionDateField = value End Set End Property - + ''' - _ + Public Property FirstShipmentAvailibilityDate() As FirstShipmentAvailibilityDateType Get Return Me.firstShipmentAvailibilityDateField @@ -39255,9 +39255,9 @@ Namespace Peppol.BISBilling30Invoice Me.firstShipmentAvailibilityDateField = value End Set End Property - + ''' - _ + Public Property LatestProposalAcceptanceDate() As LatestProposalAcceptanceDateType Get Return Me.latestProposalAcceptanceDateField @@ -39266,9 +39266,9 @@ Namespace Peppol.BISBilling30Invoice Me.latestProposalAcceptanceDateField = value End Set End Property - + ''' - _ + Public Property PromotionalSpecification() As PromotionalSpecificationType() Get Return Me.promotionalSpecificationField @@ -39278,24 +39278,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PromotionalSpecificationType - + Private specificationIDField As SpecificationIDType - + Private promotionalEventLineItemField() As PromotionalEventLineItemType - + Private eventTacticField() As EventTacticType - + ''' - _ + Public Property SpecificationID() As SpecificationIDType Get Return Me.specificationIDField @@ -39304,9 +39304,9 @@ Namespace Peppol.BISBilling30Invoice Me.specificationIDField = value End Set End Property - + ''' - _ + Public Property PromotionalEventLineItem() As PromotionalEventLineItemType() Get Return Me.promotionalEventLineItemField @@ -39315,9 +39315,9 @@ Namespace Peppol.BISBilling30Invoice Me.promotionalEventLineItemField = value End Set End Property - + ''' - _ + Public Property EventTactic() As EventTacticType() Get Return Me.eventTacticField @@ -39327,22 +39327,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class PromotionalEventLineItemType - + Private amountField As AmountType2 - + Private eventLineItemField As EventLineItemType - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -39351,7 +39351,7 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' Public Property EventLineItem() As EventLineItemType Get @@ -39362,30 +39362,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class QualificationResolutionType - + Private admissionCodeField As AdmissionCodeType - + Private exclusionReasonField() As ExclusionReasonType - + Private resolutionField() As ResolutionType - + Private resolutionDateField As ResolutionDateType - + Private resolutionTimeField As ResolutionTimeType - + Private procurementProjectLotField As ProcurementProjectLotType - + ''' - _ + Public Property AdmissionCode() As AdmissionCodeType Get Return Me.admissionCodeField @@ -39394,9 +39394,9 @@ Namespace Peppol.BISBilling30Invoice Me.admissionCodeField = value End Set End Property - + ''' - _ + Public Property ExclusionReason() As ExclusionReasonType() Get Return Me.exclusionReasonField @@ -39405,9 +39405,9 @@ Namespace Peppol.BISBilling30Invoice Me.exclusionReasonField = value End Set End Property - + ''' - _ + Public Property Resolution() As ResolutionType() Get Return Me.resolutionField @@ -39416,9 +39416,9 @@ Namespace Peppol.BISBilling30Invoice Me.resolutionField = value End Set End Property - + ''' - _ + Public Property ResolutionDate() As ResolutionDateType Get Return Me.resolutionDateField @@ -39427,9 +39427,9 @@ Namespace Peppol.BISBilling30Invoice Me.resolutionDateField = value End Set End Property - + ''' - _ + Public Property ResolutionTime() As ResolutionTimeType Get Return Me.resolutionTimeField @@ -39438,7 +39438,7 @@ Namespace Peppol.BISBilling30Invoice Me.resolutionTimeField = value End Set End Property - + ''' Public Property ProcurementProjectLot() As ProcurementProjectLotType Get @@ -39449,40 +39449,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class QuotationLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private lineExtensionAmountField As LineExtensionAmountType - + Private totalTaxAmountField As TotalTaxAmountType - + Private requestForQuotationLineIDField As RequestForQuotationLineIDType - + Private documentReferenceField() As DocumentReferenceType - + Private lineItemField As LineItemType - + Private sellerProposedSubstituteLineItemField() As LineItemType - + Private alternativeLineItemField() As LineItemType - + Private requestLineReferenceField As LineReferenceType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39491,9 +39491,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -39502,9 +39502,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -39513,9 +39513,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property LineExtensionAmount() As LineExtensionAmountType Get Return Me.lineExtensionAmountField @@ -39524,9 +39524,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineExtensionAmountField = value End Set End Property - + ''' - _ + Public Property TotalTaxAmount() As TotalTaxAmountType Get Return Me.totalTaxAmountField @@ -39535,9 +39535,9 @@ Namespace Peppol.BISBilling30Invoice Me.totalTaxAmountField = value End Set End Property - + ''' - _ + Public Property RequestForQuotationLineID() As RequestForQuotationLineIDType Get Return Me.requestForQuotationLineIDField @@ -39546,9 +39546,9 @@ Namespace Peppol.BISBilling30Invoice Me.requestForQuotationLineIDField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -39557,7 +39557,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property LineItem() As LineItemType Get @@ -39567,9 +39567,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineItemField = value End Set End Property - + ''' - _ + Public Property SellerProposedSubstituteLineItem() As LineItemType() Get Return Me.sellerProposedSubstituteLineItemField @@ -39578,9 +39578,9 @@ Namespace Peppol.BISBilling30Invoice Me.sellerProposedSubstituteLineItemField = value End Set End Property - + ''' - _ + Public Property AlternativeLineItem() As LineItemType() Get Return Me.alternativeLineItemField @@ -39589,7 +39589,7 @@ Namespace Peppol.BISBilling30Invoice Me.alternativeLineItemField = value End Set End Property - + ''' Public Property RequestLineReference() As LineReferenceType Get @@ -39600,46 +39600,46 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class ReminderLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private uUIDField As UUIDType - + Private balanceBroughtForwardIndicatorField As BalanceBroughtForwardIndicatorType - + Private debitLineAmountField As DebitLineAmountType - + Private creditLineAmountField As CreditLineAmountType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private penaltySurchargePercentField As PenaltySurchargePercentType - + Private amountField As AmountType2 - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private reminderPeriodField() As PeriodType - + Private billingReferenceField() As BillingReferenceType - + Private exchangeRateField As ExchangeRateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39648,9 +39648,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -39659,9 +39659,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -39670,9 +39670,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property BalanceBroughtForwardIndicator() As BalanceBroughtForwardIndicatorType Get Return Me.balanceBroughtForwardIndicatorField @@ -39681,9 +39681,9 @@ Namespace Peppol.BISBilling30Invoice Me.balanceBroughtForwardIndicatorField = value End Set End Property - + ''' - _ + Public Property DebitLineAmount() As DebitLineAmountType Get Return Me.debitLineAmountField @@ -39692,9 +39692,9 @@ Namespace Peppol.BISBilling30Invoice Me.debitLineAmountField = value End Set End Property - + ''' - _ + Public Property CreditLineAmount() As CreditLineAmountType Get Return Me.creditLineAmountField @@ -39703,9 +39703,9 @@ Namespace Peppol.BISBilling30Invoice Me.creditLineAmountField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -39714,9 +39714,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -39725,9 +39725,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property PenaltySurchargePercent() As PenaltySurchargePercentType Get Return Me.penaltySurchargePercentField @@ -39736,9 +39736,9 @@ Namespace Peppol.BISBilling30Invoice Me.penaltySurchargePercentField = value End Set End Property - + ''' - _ + Public Property Amount() As AmountType2 Get Return Me.amountField @@ -39747,9 +39747,9 @@ Namespace Peppol.BISBilling30Invoice Me.amountField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -39758,9 +39758,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property ReminderPeriod() As PeriodType() Get Return Me.reminderPeriodField @@ -39769,9 +39769,9 @@ Namespace Peppol.BISBilling30Invoice Me.reminderPeriodField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -39780,7 +39780,7 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -39791,54 +39791,54 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RemittanceAdviceLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private uUIDField As UUIDType - + Private debitLineAmountField As DebitLineAmountType - + Private creditLineAmountField As CreditLineAmountType - + Private balanceAmountField As BalanceAmountType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private invoicingPartyReferenceField As InvoicingPartyReferenceType - + Private accountingSupplierPartyField As SupplierPartyType - + Private accountingCustomerPartyField As CustomerPartyType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private originatorCustomerPartyField As CustomerPartyType - + Private payeePartyField As PartyType - + Private invoicePeriodField() As PeriodType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private exchangeRateField As ExchangeRateType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -39847,9 +39847,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -39858,9 +39858,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -39869,9 +39869,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property DebitLineAmount() As DebitLineAmountType Get Return Me.debitLineAmountField @@ -39880,9 +39880,9 @@ Namespace Peppol.BISBilling30Invoice Me.debitLineAmountField = value End Set End Property - + ''' - _ + Public Property CreditLineAmount() As CreditLineAmountType Get Return Me.creditLineAmountField @@ -39891,9 +39891,9 @@ Namespace Peppol.BISBilling30Invoice Me.creditLineAmountField = value End Set End Property - + ''' - _ + Public Property BalanceAmount() As BalanceAmountType Get Return Me.balanceAmountField @@ -39902,9 +39902,9 @@ Namespace Peppol.BISBilling30Invoice Me.balanceAmountField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -39913,9 +39913,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPurposeCodeField = value End Set End Property - + ''' - _ + Public Property InvoicingPartyReference() As InvoicingPartyReferenceType Get Return Me.invoicingPartyReferenceField @@ -39924,7 +39924,7 @@ Namespace Peppol.BISBilling30Invoice Me.invoicingPartyReferenceField = value End Set End Property - + ''' Public Property AccountingSupplierParty() As SupplierPartyType Get @@ -39934,7 +39934,7 @@ Namespace Peppol.BISBilling30Invoice Me.accountingSupplierPartyField = value End Set End Property - + ''' Public Property AccountingCustomerParty() As CustomerPartyType Get @@ -39944,7 +39944,7 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCustomerPartyField = value End Set End Property - + ''' Public Property BuyerCustomerParty() As CustomerPartyType Get @@ -39954,7 +39954,7 @@ Namespace Peppol.BISBilling30Invoice Me.buyerCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -39964,7 +39964,7 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property OriginatorCustomerParty() As CustomerPartyType Get @@ -39974,7 +39974,7 @@ Namespace Peppol.BISBilling30Invoice Me.originatorCustomerPartyField = value End Set End Property - + ''' Public Property PayeeParty() As PartyType Get @@ -39984,9 +39984,9 @@ Namespace Peppol.BISBilling30Invoice Me.payeePartyField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -39995,9 +39995,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -40006,9 +40006,9 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -40017,7 +40017,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -40028,34 +40028,34 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class RequestForQuotationLineType - + Private idField As IDType - + Private uUIDField As UUIDType - + Private noteField() As NoteType - + Private optionalLineItemIndicatorField As OptionalLineItemIndicatorType - + Private privacyCodeField As PrivacyCodeType - + Private securityClassificationCodeField As SecurityClassificationCodeType - + Private documentReferenceField() As DocumentReferenceType - + Private lineItemField As LineItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -40064,9 +40064,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -40075,9 +40075,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40086,9 +40086,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property OptionalLineItemIndicator() As OptionalLineItemIndicatorType Get Return Me.optionalLineItemIndicatorField @@ -40097,9 +40097,9 @@ Namespace Peppol.BISBilling30Invoice Me.optionalLineItemIndicatorField = value End Set End Property - + ''' - _ + Public Property PrivacyCode() As PrivacyCodeType Get Return Me.privacyCodeField @@ -40108,9 +40108,9 @@ Namespace Peppol.BISBilling30Invoice Me.privacyCodeField = value End Set End Property - + ''' - _ + Public Property SecurityClassificationCode() As SecurityClassificationCodeType Get Return Me.securityClassificationCodeField @@ -40119,9 +40119,9 @@ Namespace Peppol.BISBilling30Invoice Me.securityClassificationCodeField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -40130,7 +40130,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property LineItem() As LineItemType Get @@ -40141,62 +40141,62 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class StatementLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private uUIDField As UUIDType - + Private balanceBroughtForwardIndicatorField As BalanceBroughtForwardIndicatorType - + Private debitLineAmountField As DebitLineAmountType - + Private creditLineAmountField As CreditLineAmountType - + Private balanceAmountField As BalanceAmountType - + Private paymentPurposeCodeField As PaymentPurposeCodeType - + Private paymentMeansField As PaymentMeansType - + Private paymentTermsField() As PaymentTermsType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private originatorCustomerPartyField As CustomerPartyType - + Private accountingCustomerPartyField As CustomerPartyType - + Private accountingSupplierPartyField As SupplierPartyType - + Private payeePartyField As PartyType - + Private invoicePeriodField() As PeriodType - + Private billingReferenceField() As BillingReferenceType - + Private documentReferenceField() As DocumentReferenceType - + Private exchangeRateField As ExchangeRateType - + Private allowanceChargeField() As AllowanceChargeType - + Private collectedPaymentField() As PaymentType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -40205,9 +40205,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40216,9 +40216,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -40227,9 +40227,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property BalanceBroughtForwardIndicator() As BalanceBroughtForwardIndicatorType Get Return Me.balanceBroughtForwardIndicatorField @@ -40238,9 +40238,9 @@ Namespace Peppol.BISBilling30Invoice Me.balanceBroughtForwardIndicatorField = value End Set End Property - + ''' - _ + Public Property DebitLineAmount() As DebitLineAmountType Get Return Me.debitLineAmountField @@ -40249,9 +40249,9 @@ Namespace Peppol.BISBilling30Invoice Me.debitLineAmountField = value End Set End Property - + ''' - _ + Public Property CreditLineAmount() As CreditLineAmountType Get Return Me.creditLineAmountField @@ -40260,9 +40260,9 @@ Namespace Peppol.BISBilling30Invoice Me.creditLineAmountField = value End Set End Property - + ''' - _ + Public Property BalanceAmount() As BalanceAmountType Get Return Me.balanceAmountField @@ -40271,9 +40271,9 @@ Namespace Peppol.BISBilling30Invoice Me.balanceAmountField = value End Set End Property - + ''' - _ + Public Property PaymentPurposeCode() As PaymentPurposeCodeType Get Return Me.paymentPurposeCodeField @@ -40282,7 +40282,7 @@ Namespace Peppol.BISBilling30Invoice Me.paymentPurposeCodeField = value End Set End Property - + ''' Public Property PaymentMeans() As PaymentMeansType Get @@ -40292,9 +40292,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentMeansField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -40303,7 +40303,7 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' Public Property BuyerCustomerParty() As CustomerPartyType Get @@ -40313,7 +40313,7 @@ Namespace Peppol.BISBilling30Invoice Me.buyerCustomerPartyField = value End Set End Property - + ''' Public Property SellerSupplierParty() As SupplierPartyType Get @@ -40323,7 +40323,7 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' Public Property OriginatorCustomerParty() As CustomerPartyType Get @@ -40333,7 +40333,7 @@ Namespace Peppol.BISBilling30Invoice Me.originatorCustomerPartyField = value End Set End Property - + ''' Public Property AccountingCustomerParty() As CustomerPartyType Get @@ -40343,7 +40343,7 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCustomerPartyField = value End Set End Property - + ''' Public Property AccountingSupplierParty() As SupplierPartyType Get @@ -40353,7 +40353,7 @@ Namespace Peppol.BISBilling30Invoice Me.accountingSupplierPartyField = value End Set End Property - + ''' Public Property PayeeParty() As PartyType Get @@ -40363,9 +40363,9 @@ Namespace Peppol.BISBilling30Invoice Me.payeePartyField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -40374,9 +40374,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -40385,9 +40385,9 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DocumentReference() As DocumentReferenceType() Get Return Me.documentReferenceField @@ -40396,7 +40396,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentReferenceField = value End Set End Property - + ''' Public Property ExchangeRate() As ExchangeRateType Get @@ -40406,9 +40406,9 @@ Namespace Peppol.BISBilling30Invoice Me.exchangeRateField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -40417,9 +40417,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property CollectedPayment() As PaymentType() Get Return Me.collectedPaymentField @@ -40429,32 +40429,32 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class StockAvailabilityReportLineType - + Private idField As IDType - + Private noteField() As NoteType - + Private quantityField As QuantityType2 - + Private valueAmountField As ValueAmountType - + Private availabilityDateField As AvailabilityDateType - + Private availabilityStatusCodeField As AvailabilityStatusCodeType - + Private itemField As ItemType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -40463,9 +40463,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40474,9 +40474,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property Quantity() As QuantityType2 Get Return Me.quantityField @@ -40485,9 +40485,9 @@ Namespace Peppol.BISBilling30Invoice Me.quantityField = value End Set End Property - + ''' - _ + Public Property ValueAmount() As ValueAmountType Get Return Me.valueAmountField @@ -40496,9 +40496,9 @@ Namespace Peppol.BISBilling30Invoice Me.valueAmountField = value End Set End Property - + ''' - _ + Public Property AvailabilityDate() As AvailabilityDateType Get Return Me.availabilityDateField @@ -40507,9 +40507,9 @@ Namespace Peppol.BISBilling30Invoice Me.availabilityDateField = value End Set End Property - + ''' - _ + Public Property AvailabilityStatusCode() As AvailabilityStatusCodeType Get Return Me.availabilityStatusCodeField @@ -40518,7 +40518,7 @@ Namespace Peppol.BISBilling30Invoice Me.availabilityStatusCodeField = value End Set End Property - + ''' Public Property Item() As ItemType Get @@ -40529,36 +40529,36 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SubscriberConsumptionType - + Private consumptionIDField As ConsumptionIDType - + Private specificationTypeCodeField As SpecificationTypeCodeType - + Private noteField() As NoteType - + Private totalMeteredQuantityField As TotalMeteredQuantityType - + Private subscriberPartyField As PartyType - + Private utilityConsumptionPointField As ConsumptionPointType - + Private onAccountPaymentField() As OnAccountPaymentType - + Private consumptionField As ConsumptionType - + Private supplierConsumptionField() As SupplierConsumptionType - + ''' - _ + Public Property ConsumptionID() As ConsumptionIDType Get Return Me.consumptionIDField @@ -40567,9 +40567,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionIDField = value End Set End Property - + ''' - _ + Public Property SpecificationTypeCode() As SpecificationTypeCodeType Get Return Me.specificationTypeCodeField @@ -40578,9 +40578,9 @@ Namespace Peppol.BISBilling30Invoice Me.specificationTypeCodeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -40589,9 +40589,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property TotalMeteredQuantity() As TotalMeteredQuantityType Get Return Me.totalMeteredQuantityField @@ -40600,7 +40600,7 @@ Namespace Peppol.BISBilling30Invoice Me.totalMeteredQuantityField = value End Set End Property - + ''' Public Property SubscriberParty() As PartyType Get @@ -40610,7 +40610,7 @@ Namespace Peppol.BISBilling30Invoice Me.subscriberPartyField = value End Set End Property - + ''' Public Property UtilityConsumptionPoint() As ConsumptionPointType Get @@ -40620,9 +40620,9 @@ Namespace Peppol.BISBilling30Invoice Me.utilityConsumptionPointField = value End Set End Property - + ''' - _ + Public Property OnAccountPayment() As OnAccountPaymentType() Get Return Me.onAccountPaymentField @@ -40631,7 +40631,7 @@ Namespace Peppol.BISBilling30Invoice Me.onAccountPaymentField = value End Set End Property - + ''' Public Property Consumption() As ConsumptionType Get @@ -40641,9 +40641,9 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionField = value End Set End Property - + ''' - _ + Public Property SupplierConsumption() As SupplierConsumptionType() Get Return Me.supplierConsumptionField @@ -40653,30 +40653,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class SupplierConsumptionType - + Private descriptionField() As DescriptionType - + Private utilitySupplierPartyField As PartyType - + Private utilityCustomerPartyField As PartyType - + Private consumptionField As ConsumptionType - + Private contractField As ContractType - + Private consumptionLineField() As ConsumptionLineType - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -40685,7 +40685,7 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' Public Property UtilitySupplierParty() As PartyType Get @@ -40695,7 +40695,7 @@ Namespace Peppol.BISBilling30Invoice Me.utilitySupplierPartyField = value End Set End Property - + ''' Public Property UtilityCustomerParty() As PartyType Get @@ -40705,7 +40705,7 @@ Namespace Peppol.BISBilling30Invoice Me.utilityCustomerPartyField = value End Set End Property - + ''' Public Property Consumption() As ConsumptionType Get @@ -40715,7 +40715,7 @@ Namespace Peppol.BISBilling30Invoice Me.consumptionField = value End Set End Property - + ''' Public Property Contract() As ContractType Get @@ -40725,9 +40725,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractField = value End Set End Property - + ''' - _ + Public Property ConsumptionLine() As ConsumptionLineType() Get Return Me.consumptionLineField @@ -40737,50 +40737,50 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderResultType - + Private tenderResultCodeField As TenderResultCodeType - + Private descriptionField() As DescriptionType - + Private advertisementAmountField As AdvertisementAmountType - + Private awardDateField As AwardDateType - + Private awardTimeField As AwardTimeType - + Private receivedTenderQuantityField As ReceivedTenderQuantityType - + Private lowerTenderAmountField As LowerTenderAmountType - + Private higherTenderAmountField As HigherTenderAmountType - + Private startDateField As StartDateType - + Private receivedElectronicTenderQuantityField As ReceivedElectronicTenderQuantityType - + Private receivedForeignTenderQuantityField As ReceivedForeignTenderQuantityType - + Private contractField As ContractType - + Private awardedTenderedProjectField As TenderedProjectType - + Private contractFormalizationPeriodField As PeriodType - + Private subcontractTermsField() As SubcontractTermsType - + Private winningPartyField() As WinningPartyType - + ''' - _ + Public Property TenderResultCode() As TenderResultCodeType Get Return Me.tenderResultCodeField @@ -40789,9 +40789,9 @@ Namespace Peppol.BISBilling30Invoice Me.tenderResultCodeField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -40800,9 +40800,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property AdvertisementAmount() As AdvertisementAmountType Get Return Me.advertisementAmountField @@ -40811,9 +40811,9 @@ Namespace Peppol.BISBilling30Invoice Me.advertisementAmountField = value End Set End Property - + ''' - _ + Public Property AwardDate() As AwardDateType Get Return Me.awardDateField @@ -40822,9 +40822,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardDateField = value End Set End Property - + ''' - _ + Public Property AwardTime() As AwardTimeType Get Return Me.awardTimeField @@ -40833,9 +40833,9 @@ Namespace Peppol.BISBilling30Invoice Me.awardTimeField = value End Set End Property - + ''' - _ + Public Property ReceivedTenderQuantity() As ReceivedTenderQuantityType Get Return Me.receivedTenderQuantityField @@ -40844,9 +40844,9 @@ Namespace Peppol.BISBilling30Invoice Me.receivedTenderQuantityField = value End Set End Property - + ''' - _ + Public Property LowerTenderAmount() As LowerTenderAmountType Get Return Me.lowerTenderAmountField @@ -40855,9 +40855,9 @@ Namespace Peppol.BISBilling30Invoice Me.lowerTenderAmountField = value End Set End Property - + ''' - _ + Public Property HigherTenderAmount() As HigherTenderAmountType Get Return Me.higherTenderAmountField @@ -40866,9 +40866,9 @@ Namespace Peppol.BISBilling30Invoice Me.higherTenderAmountField = value End Set End Property - + ''' - _ + Public Property StartDate() As StartDateType Get Return Me.startDateField @@ -40877,9 +40877,9 @@ Namespace Peppol.BISBilling30Invoice Me.startDateField = value End Set End Property - + ''' - _ + Public Property ReceivedElectronicTenderQuantity() As ReceivedElectronicTenderQuantityType Get Return Me.receivedElectronicTenderQuantityField @@ -40888,9 +40888,9 @@ Namespace Peppol.BISBilling30Invoice Me.receivedElectronicTenderQuantityField = value End Set End Property - + ''' - _ + Public Property ReceivedForeignTenderQuantity() As ReceivedForeignTenderQuantityType Get Return Me.receivedForeignTenderQuantityField @@ -40899,7 +40899,7 @@ Namespace Peppol.BISBilling30Invoice Me.receivedForeignTenderQuantityField = value End Set End Property - + ''' Public Property Contract() As ContractType Get @@ -40909,7 +40909,7 @@ Namespace Peppol.BISBilling30Invoice Me.contractField = value End Set End Property - + ''' Public Property AwardedTenderedProject() As TenderedProjectType Get @@ -40919,7 +40919,7 @@ Namespace Peppol.BISBilling30Invoice Me.awardedTenderedProjectField = value End Set End Property - + ''' Public Property ContractFormalizationPeriod() As PeriodType Get @@ -40929,9 +40929,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractFormalizationPeriodField = value End Set End Property - + ''' - _ + Public Property SubcontractTerms() As SubcontractTermsType() Get Return Me.subcontractTermsField @@ -40940,9 +40940,9 @@ Namespace Peppol.BISBilling30Invoice Me.subcontractTermsField = value End Set End Property - + ''' - _ + Public Property WinningParty() As WinningPartyType() Get Return Me.winningPartyField @@ -40952,22 +40952,22 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class WinningPartyType - + Private rankField As RankType - + Private partyField As PartyType - + ''' - _ + Public Property Rank() As RankType Get Return Me.rankField @@ -40976,7 +40976,7 @@ Namespace Peppol.BISBilling30Invoice Me.rankField = value End Set End Property - + ''' Public Property Party() As PartyType Get @@ -40987,24 +40987,24 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TendererPartyQualificationType - + Private interestedProcurementProjectLotField() As ProcurementProjectLotType - + Private mainQualifyingPartyField As QualifyingPartyType - + Private additionalQualifyingPartyField() As QualifyingPartyType - + ''' - _ + Public Property InterestedProcurementProjectLot() As ProcurementProjectLotType() Get Return Me.interestedProcurementProjectLotField @@ -41013,7 +41013,7 @@ Namespace Peppol.BISBilling30Invoice Me.interestedProcurementProjectLotField = value End Set End Property - + ''' Public Property MainQualifyingParty() As QualifyingPartyType Get @@ -41023,9 +41023,9 @@ Namespace Peppol.BISBilling30Invoice Me.mainQualifyingPartyField = value End Set End Property - + ''' - _ + Public Property AdditionalQualifyingParty() As QualifyingPartyType() Get Return Me.additionalQualifyingPartyField @@ -41035,64 +41035,64 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TenderingProcessType - + Private idField As IDType - + Private originalContractingSystemIDField As OriginalContractingSystemIDType - + Private descriptionField() As DescriptionType - + Private negotiationDescriptionField() As NegotiationDescriptionType - + Private procedureCodeField As ProcedureCodeType - + Private urgencyCodeField As UrgencyCodeType - + Private expenseCodeField As ExpenseCodeType - + Private partPresentationCodeField As PartPresentationCodeType - + Private contractingSystemCodeField As ContractingSystemCodeType - + Private submissionMethodCodeField As SubmissionMethodCodeType - + Private candidateReductionConstraintIndicatorField As CandidateReductionConstraintIndicatorType - + Private governmentAgreementConstraintIndicatorField As GovernmentAgreementConstraintIndicatorType - + Private documentAvailabilityPeriodField As PeriodType - + Private tenderSubmissionDeadlinePeriodField As PeriodType - + Private invitationSubmissionPeriodField As PeriodType - + Private participationRequestReceptionPeriodField As PeriodType - + Private noticeDocumentReferenceField() As DocumentReferenceType - + Private additionalDocumentReferenceField() As DocumentReferenceType - + Private processJustificationField() As ProcessJustificationType - + Private economicOperatorShortListField As EconomicOperatorShortListType - + Private openTenderEventField() As EventType - + Private auctionTermsField As AuctionTermsType - + Private frameworkAgreementField As FrameworkAgreementType - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -41101,9 +41101,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property OriginalContractingSystemID() As OriginalContractingSystemIDType Get Return Me.originalContractingSystemIDField @@ -41112,9 +41112,9 @@ Namespace Peppol.BISBilling30Invoice Me.originalContractingSystemIDField = value End Set End Property - + ''' - _ + Public Property Description() As DescriptionType() Get Return Me.descriptionField @@ -41123,9 +41123,9 @@ Namespace Peppol.BISBilling30Invoice Me.descriptionField = value End Set End Property - + ''' - _ + Public Property NegotiationDescription() As NegotiationDescriptionType() Get Return Me.negotiationDescriptionField @@ -41134,9 +41134,9 @@ Namespace Peppol.BISBilling30Invoice Me.negotiationDescriptionField = value End Set End Property - + ''' - _ + Public Property ProcedureCode() As ProcedureCodeType Get Return Me.procedureCodeField @@ -41145,9 +41145,9 @@ Namespace Peppol.BISBilling30Invoice Me.procedureCodeField = value End Set End Property - + ''' - _ + Public Property UrgencyCode() As UrgencyCodeType Get Return Me.urgencyCodeField @@ -41156,9 +41156,9 @@ Namespace Peppol.BISBilling30Invoice Me.urgencyCodeField = value End Set End Property - + ''' - _ + Public Property ExpenseCode() As ExpenseCodeType Get Return Me.expenseCodeField @@ -41167,9 +41167,9 @@ Namespace Peppol.BISBilling30Invoice Me.expenseCodeField = value End Set End Property - + ''' - _ + Public Property PartPresentationCode() As PartPresentationCodeType Get Return Me.partPresentationCodeField @@ -41178,9 +41178,9 @@ Namespace Peppol.BISBilling30Invoice Me.partPresentationCodeField = value End Set End Property - + ''' - _ + Public Property ContractingSystemCode() As ContractingSystemCodeType Get Return Me.contractingSystemCodeField @@ -41189,9 +41189,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractingSystemCodeField = value End Set End Property - + ''' - _ + Public Property SubmissionMethodCode() As SubmissionMethodCodeType Get Return Me.submissionMethodCodeField @@ -41200,9 +41200,9 @@ Namespace Peppol.BISBilling30Invoice Me.submissionMethodCodeField = value End Set End Property - + ''' - _ + Public Property CandidateReductionConstraintIndicator() As CandidateReductionConstraintIndicatorType Get Return Me.candidateReductionConstraintIndicatorField @@ -41211,9 +41211,9 @@ Namespace Peppol.BISBilling30Invoice Me.candidateReductionConstraintIndicatorField = value End Set End Property - + ''' - _ + Public Property GovernmentAgreementConstraintIndicator() As GovernmentAgreementConstraintIndicatorType Get Return Me.governmentAgreementConstraintIndicatorField @@ -41222,7 +41222,7 @@ Namespace Peppol.BISBilling30Invoice Me.governmentAgreementConstraintIndicatorField = value End Set End Property - + ''' Public Property DocumentAvailabilityPeriod() As PeriodType Get @@ -41232,7 +41232,7 @@ Namespace Peppol.BISBilling30Invoice Me.documentAvailabilityPeriodField = value End Set End Property - + ''' Public Property TenderSubmissionDeadlinePeriod() As PeriodType Get @@ -41242,7 +41242,7 @@ Namespace Peppol.BISBilling30Invoice Me.tenderSubmissionDeadlinePeriodField = value End Set End Property - + ''' Public Property InvitationSubmissionPeriod() As PeriodType Get @@ -41252,7 +41252,7 @@ Namespace Peppol.BISBilling30Invoice Me.invitationSubmissionPeriodField = value End Set End Property - + ''' Public Property ParticipationRequestReceptionPeriod() As PeriodType Get @@ -41262,9 +41262,9 @@ Namespace Peppol.BISBilling30Invoice Me.participationRequestReceptionPeriodField = value End Set End Property - + ''' - _ + Public Property NoticeDocumentReference() As DocumentReferenceType() Get Return Me.noticeDocumentReferenceField @@ -41273,9 +41273,9 @@ Namespace Peppol.BISBilling30Invoice Me.noticeDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property AdditionalDocumentReference() As DocumentReferenceType() Get Return Me.additionalDocumentReferenceField @@ -41284,9 +41284,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ProcessJustification() As ProcessJustificationType() Get Return Me.processJustificationField @@ -41295,7 +41295,7 @@ Namespace Peppol.BISBilling30Invoice Me.processJustificationField = value End Set End Property - + ''' Public Property EconomicOperatorShortList() As EconomicOperatorShortListType Get @@ -41305,9 +41305,9 @@ Namespace Peppol.BISBilling30Invoice Me.economicOperatorShortListField = value End Set End Property - + ''' - _ + Public Property OpenTenderEvent() As EventType() Get Return Me.openTenderEventField @@ -41316,7 +41316,7 @@ Namespace Peppol.BISBilling30Invoice Me.openTenderEventField = value End Set End Property - + ''' Public Property AuctionTerms() As AuctionTermsType Get @@ -41326,7 +41326,7 @@ Namespace Peppol.BISBilling30Invoice Me.auctionTermsField = value End Set End Property - + ''' Public Property FrameworkAgreement() As FrameworkAgreementType Get @@ -41337,40 +41337,40 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportExecutionTermsType - + Private transportUserSpecialTermsField() As TransportUserSpecialTermsType - + Private transportServiceProviderSpecialTermsField() As TransportServiceProviderSpecialTermsType - + Private changeConditionsField() As ChangeConditionsType - + Private paymentTermsField() As PaymentTermsType - + Private deliveryTermsField() As DeliveryTermsType - + Private bonusPaymentTermsField As PaymentTermsType - + Private commissionPaymentTermsField As PaymentTermsType - + Private penaltyPaymentTermsField As PaymentTermsType - + Private environmentalEmissionField() As EnvironmentalEmissionType - + Private notificationRequirementField() As NotificationRequirementType - + Private serviceChargePaymentTermsField As PaymentTermsType - + ''' - _ + Public Property TransportUserSpecialTerms() As TransportUserSpecialTermsType() Get Return Me.transportUserSpecialTermsField @@ -41379,9 +41379,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportUserSpecialTermsField = value End Set End Property - + ''' - _ + Public Property TransportServiceProviderSpecialTerms() As TransportServiceProviderSpecialTermsType() Get Return Me.transportServiceProviderSpecialTermsField @@ -41390,9 +41390,9 @@ Namespace Peppol.BISBilling30Invoice Me.transportServiceProviderSpecialTermsField = value End Set End Property - + ''' - _ + Public Property ChangeConditions() As ChangeConditionsType() Get Return Me.changeConditionsField @@ -41401,9 +41401,9 @@ Namespace Peppol.BISBilling30Invoice Me.changeConditionsField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -41412,9 +41412,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType() Get Return Me.deliveryTermsField @@ -41423,7 +41423,7 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' Public Property BonusPaymentTerms() As PaymentTermsType Get @@ -41433,7 +41433,7 @@ Namespace Peppol.BISBilling30Invoice Me.bonusPaymentTermsField = value End Set End Property - + ''' Public Property CommissionPaymentTerms() As PaymentTermsType Get @@ -41443,7 +41443,7 @@ Namespace Peppol.BISBilling30Invoice Me.commissionPaymentTermsField = value End Set End Property - + ''' Public Property PenaltyPaymentTerms() As PaymentTermsType Get @@ -41453,9 +41453,9 @@ Namespace Peppol.BISBilling30Invoice Me.penaltyPaymentTermsField = value End Set End Property - + ''' - _ + Public Property EnvironmentalEmission() As EnvironmentalEmissionType() Get Return Me.environmentalEmissionField @@ -41464,9 +41464,9 @@ Namespace Peppol.BISBilling30Invoice Me.environmentalEmissionField = value End Set End Property - + ''' - _ + Public Property NotificationRequirement() As NotificationRequirementType() Get Return Me.notificationRequirementField @@ -41475,7 +41475,7 @@ Namespace Peppol.BISBilling30Invoice Me.notificationRequirementField = value End Set End Property - + ''' Public Property ServiceChargePaymentTerms() As PaymentTermsType Get @@ -41486,42 +41486,42 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportScheduleType - + Private sequenceNumericField As SequenceNumericType - + Private referenceDateField As ReferenceDateType - + Private referenceTimeField As ReferenceTimeType - + Private reliabilityPercentField As ReliabilityPercentType - + Private remarksField() As RemarksType - + Private statusLocationField As LocationType1 - + Private actualArrivalTransportEventField As TransportEventType - + Private actualDepartureTransportEventField As TransportEventType - + Private estimatedDepartureTransportEventField As TransportEventType - + Private estimatedArrivalTransportEventField As TransportEventType - + Private plannedDepartureTransportEventField As TransportEventType - + Private plannedArrivalTransportEventField As TransportEventType - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -41530,9 +41530,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property ReferenceDate() As ReferenceDateType Get Return Me.referenceDateField @@ -41541,9 +41541,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceDateField = value End Set End Property - + ''' - _ + Public Property ReferenceTime() As ReferenceTimeType Get Return Me.referenceTimeField @@ -41552,9 +41552,9 @@ Namespace Peppol.BISBilling30Invoice Me.referenceTimeField = value End Set End Property - + ''' - _ + Public Property ReliabilityPercent() As ReliabilityPercentType Get Return Me.reliabilityPercentField @@ -41563,9 +41563,9 @@ Namespace Peppol.BISBilling30Invoice Me.reliabilityPercentField = value End Set End Property - + ''' - _ + Public Property Remarks() As RemarksType() Get Return Me.remarksField @@ -41574,7 +41574,7 @@ Namespace Peppol.BISBilling30Invoice Me.remarksField = value End Set End Property - + ''' Public Property StatusLocation() As LocationType1 Get @@ -41584,7 +41584,7 @@ Namespace Peppol.BISBilling30Invoice Me.statusLocationField = value End Set End Property - + ''' Public Property ActualArrivalTransportEvent() As TransportEventType Get @@ -41594,7 +41594,7 @@ Namespace Peppol.BISBilling30Invoice Me.actualArrivalTransportEventField = value End Set End Property - + ''' Public Property ActualDepartureTransportEvent() As TransportEventType Get @@ -41604,7 +41604,7 @@ Namespace Peppol.BISBilling30Invoice Me.actualDepartureTransportEventField = value End Set End Property - + ''' Public Property EstimatedDepartureTransportEvent() As TransportEventType Get @@ -41614,7 +41614,7 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedDepartureTransportEventField = value End Set End Property - + ''' Public Property EstimatedArrivalTransportEvent() As TransportEventType Get @@ -41624,7 +41624,7 @@ Namespace Peppol.BISBilling30Invoice Me.estimatedArrivalTransportEventField = value End Set End Property - + ''' Public Property PlannedDepartureTransportEvent() As TransportEventType Get @@ -41634,7 +41634,7 @@ Namespace Peppol.BISBilling30Invoice Me.plannedDepartureTransportEventField = value End Set End Property - + ''' Public Property PlannedArrivalTransportEvent() As TransportEventType Get @@ -41645,30 +41645,30 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class TransportationSegmentType - + Private sequenceNumericField As SequenceNumericType - + Private transportExecutionPlanReferenceIDField As TransportExecutionPlanReferenceIDType - + Private transportationServiceField As TransportationServiceType - + Private transportServiceProviderPartyField As PartyType - + Private referencedConsignmentField As ConsignmentType - + Private shipmentStageField() As ShipmentStageType - + ''' - _ + Public Property SequenceNumeric() As SequenceNumericType Get Return Me.sequenceNumericField @@ -41677,9 +41677,9 @@ Namespace Peppol.BISBilling30Invoice Me.sequenceNumericField = value End Set End Property - + ''' - _ + Public Property TransportExecutionPlanReferenceID() As TransportExecutionPlanReferenceIDType Get Return Me.transportExecutionPlanReferenceIDField @@ -41688,7 +41688,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportExecutionPlanReferenceIDField = value End Set End Property - + ''' Public Property TransportationService() As TransportationServiceType Get @@ -41698,7 +41698,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportationServiceField = value End Set End Property - + ''' Public Property TransportServiceProviderParty() As PartyType Get @@ -41708,7 +41708,7 @@ Namespace Peppol.BISBilling30Invoice Me.transportServiceProviderPartyField = value End Set End Property - + ''' Public Property ReferencedConsignment() As ConsignmentType Get @@ -41718,9 +41718,9 @@ Namespace Peppol.BISBilling30Invoice Me.referencedConsignmentField = value End Set End Property - + ''' - _ + Public Property ShipmentStage() As ShipmentStageType() Get Return Me.shipmentStageField @@ -41730,20 +41730,20 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class UBLExtensionsType - + Private uBLExtensionField() As UBLExtensionType - + ''' - _ + Public Property UBLExtension() As UBLExtensionType() Get Return Me.uBLExtensionField @@ -41753,38 +41753,38 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class UBLExtensionType - + Private idField As IDType - + Private nameField As NameType1 - + Private extensionAgencyIDField As ExtensionAgencyIDType - + Private extensionAgencyNameField As ExtensionAgencyNameType - + Private extensionVersionIDField As ExtensionVersionIDType - + Private extensionAgencyURIField As ExtensionAgencyURIType - + Private extensionURIField As ExtensionURIType - + Private extensionReasonCodeField As ExtensionReasonCodeType - + Private extensionReasonField As ExtensionReasonType - + Private extensionContentField As System.Xml.XmlElement - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -41793,9 +41793,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property Name() As NameType1 Get Return Me.nameField @@ -41804,7 +41804,7 @@ Namespace Peppol.BISBilling30Invoice Me.nameField = value End Set End Property - + ''' Public Property ExtensionAgencyID() As ExtensionAgencyIDType Get @@ -41814,7 +41814,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionAgencyIDField = value End Set End Property - + ''' Public Property ExtensionAgencyName() As ExtensionAgencyNameType Get @@ -41824,7 +41824,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionAgencyNameField = value End Set End Property - + ''' Public Property ExtensionVersionID() As ExtensionVersionIDType Get @@ -41834,7 +41834,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionVersionIDField = value End Set End Property - + ''' Public Property ExtensionAgencyURI() As ExtensionAgencyURIType Get @@ -41844,7 +41844,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionAgencyURIField = value End Set End Property - + ''' Public Property ExtensionURI() As ExtensionURIType Get @@ -41854,7 +41854,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionURIField = value End Set End Property - + ''' Public Property ExtensionReasonCode() As ExtensionReasonCodeType Get @@ -41864,7 +41864,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionReasonCodeField = value End Set End Property - + ''' Public Property ExtensionReason() As ExtensionReasonType Get @@ -41874,7 +41874,7 @@ Namespace Peppol.BISBilling30Invoice Me.extensionReasonField = value End Set End Property - + ''' Public Property ExtensionContent() As System.Xml.XmlElement Get @@ -41885,127 +41885,127 @@ Namespace Peppol.BISBilling30Invoice End Set End Property End Class - + ''' - _ + Partial Public Class InvoiceType - + Private uBLExtensionsField() As UBLExtensionType - + Private uBLVersionIDField As UBLVersionIDType - + Private customizationIDField As CustomizationIDType - + Private profileIDField As ProfileIDType - + Private profileExecutionIDField As ProfileExecutionIDType - + Private idField As IDType - + Private copyIndicatorField As CopyIndicatorType - + Private uUIDField As UUIDType - + Private issueDateField As IssueDateType - + Private issueTimeField As IssueTimeType - + Private dueDateField As DueDateType - + Private invoiceTypeCodeField As InvoiceTypeCodeType - + Private noteField() As NoteType - + Private taxPointDateField As TaxPointDateType - + Private documentCurrencyCodeField As DocumentCurrencyCodeType - + Private taxCurrencyCodeField As TaxCurrencyCodeType - + Private pricingCurrencyCodeField As PricingCurrencyCodeType - + Private paymentCurrencyCodeField As PaymentCurrencyCodeType - + Private paymentAlternativeCurrencyCodeField As PaymentAlternativeCurrencyCodeType - + Private accountingCostCodeField As AccountingCostCodeType - + Private accountingCostField As AccountingCostType - + Private lineCountNumericField As LineCountNumericType - + Private buyerReferenceField As BuyerReferenceType - + Private invoicePeriodField() As PeriodType - + Private orderReferenceField As OrderReferenceType - + Private billingReferenceField() As BillingReferenceType - + Private despatchDocumentReferenceField() As DocumentReferenceType - + Private receiptDocumentReferenceField() As DocumentReferenceType - + Private statementDocumentReferenceField() As DocumentReferenceType - + Private originatorDocumentReferenceField() As DocumentReferenceType - + Private contractDocumentReferenceField() As DocumentReferenceType - + Private additionalDocumentReferenceField() As DocumentReferenceType - + Private projectReferenceField() As ProjectReferenceType - + Private signatureField() As SignatureType - + Private accountingSupplierPartyField As SupplierPartyType - + Private accountingCustomerPartyField As CustomerPartyType - + Private payeePartyField As PartyType - + Private buyerCustomerPartyField As CustomerPartyType - + Private sellerSupplierPartyField As SupplierPartyType - + Private taxRepresentativePartyField As PartyType - + Private deliveryField() As DeliveryType - + Private deliveryTermsField As DeliveryTermsType - + Private paymentMeansField() As PaymentMeansType - + Private paymentTermsField() As PaymentTermsType - + Private prepaidPaymentField() As PaymentType - + Private allowanceChargeField() As AllowanceChargeType - + Private taxExchangeRateField As ExchangeRateType - + Private pricingExchangeRateField As ExchangeRateType - + Private paymentExchangeRateField As ExchangeRateType - + Private paymentAlternativeExchangeRateField As ExchangeRateType - + Private taxTotalField() As TaxTotalType - + Private withholdingTaxTotalField() As TaxTotalType - + Private legalMonetaryTotalField As MonetaryTotalType - + Private invoiceLineField() As InvoiceLineType - + ''' - _ + Public Property UBLExtensions() As UBLExtensionType() Get Return Me.uBLExtensionsField @@ -42014,9 +42014,9 @@ Namespace Peppol.BISBilling30Invoice Me.uBLExtensionsField = value End Set End Property - + ''' - _ + Public Property UBLVersionID() As UBLVersionIDType Get Return Me.uBLVersionIDField @@ -42025,9 +42025,9 @@ Namespace Peppol.BISBilling30Invoice Me.uBLVersionIDField = value End Set End Property - + ''' - _ + Public Property CustomizationID() As CustomizationIDType Get Return Me.customizationIDField @@ -42036,9 +42036,9 @@ Namespace Peppol.BISBilling30Invoice Me.customizationIDField = value End Set End Property - + ''' - _ + Public Property ProfileID() As ProfileIDType Get Return Me.profileIDField @@ -42047,9 +42047,9 @@ Namespace Peppol.BISBilling30Invoice Me.profileIDField = value End Set End Property - + ''' - _ + Public Property ProfileExecutionID() As ProfileExecutionIDType Get Return Me.profileExecutionIDField @@ -42058,9 +42058,9 @@ Namespace Peppol.BISBilling30Invoice Me.profileExecutionIDField = value End Set End Property - + ''' - _ + Public Property ID() As IDType Get Return Me.idField @@ -42069,9 +42069,9 @@ Namespace Peppol.BISBilling30Invoice Me.idField = value End Set End Property - + ''' - _ + Public Property CopyIndicator() As CopyIndicatorType Get Return Me.copyIndicatorField @@ -42080,9 +42080,9 @@ Namespace Peppol.BISBilling30Invoice Me.copyIndicatorField = value End Set End Property - + ''' - _ + Public Property UUID() As UUIDType Get Return Me.uUIDField @@ -42091,9 +42091,9 @@ Namespace Peppol.BISBilling30Invoice Me.uUIDField = value End Set End Property - + ''' - _ + Public Property IssueDate() As IssueDateType Get Return Me.issueDateField @@ -42102,9 +42102,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueDateField = value End Set End Property - + ''' - _ + Public Property IssueTime() As IssueTimeType Get Return Me.issueTimeField @@ -42113,9 +42113,9 @@ Namespace Peppol.BISBilling30Invoice Me.issueTimeField = value End Set End Property - + ''' - _ + Public Property DueDate() As DueDateType Get Return Me.dueDateField @@ -42124,9 +42124,9 @@ Namespace Peppol.BISBilling30Invoice Me.dueDateField = value End Set End Property - + ''' - _ + Public Property InvoiceTypeCode() As InvoiceTypeCodeType Get Return Me.invoiceTypeCodeField @@ -42135,9 +42135,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoiceTypeCodeField = value End Set End Property - + ''' - _ + Public Property Note() As NoteType() Get Return Me.noteField @@ -42146,9 +42146,9 @@ Namespace Peppol.BISBilling30Invoice Me.noteField = value End Set End Property - + ''' - _ + Public Property TaxPointDate() As TaxPointDateType Get Return Me.taxPointDateField @@ -42157,9 +42157,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxPointDateField = value End Set End Property - + ''' - _ + Public Property DocumentCurrencyCode() As DocumentCurrencyCodeType Get Return Me.documentCurrencyCodeField @@ -42168,9 +42168,9 @@ Namespace Peppol.BISBilling30Invoice Me.documentCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property TaxCurrencyCode() As TaxCurrencyCodeType Get Return Me.taxCurrencyCodeField @@ -42179,9 +42179,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property PricingCurrencyCode() As PricingCurrencyCodeType Get Return Me.pricingCurrencyCodeField @@ -42190,9 +42190,9 @@ Namespace Peppol.BISBilling30Invoice Me.pricingCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property PaymentCurrencyCode() As PaymentCurrencyCodeType Get Return Me.paymentCurrencyCodeField @@ -42201,9 +42201,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property PaymentAlternativeCurrencyCode() As PaymentAlternativeCurrencyCodeType Get Return Me.paymentAlternativeCurrencyCodeField @@ -42212,9 +42212,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentAlternativeCurrencyCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCostCode() As AccountingCostCodeType Get Return Me.accountingCostCodeField @@ -42223,9 +42223,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostCodeField = value End Set End Property - + ''' - _ + Public Property AccountingCost() As AccountingCostType Get Return Me.accountingCostField @@ -42234,9 +42234,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCostField = value End Set End Property - + ''' - _ + Public Property LineCountNumeric() As LineCountNumericType Get Return Me.lineCountNumericField @@ -42245,9 +42245,9 @@ Namespace Peppol.BISBilling30Invoice Me.lineCountNumericField = value End Set End Property - + ''' - _ + Public Property BuyerReference() As BuyerReferenceType Get Return Me.buyerReferenceField @@ -42256,9 +42256,9 @@ Namespace Peppol.BISBilling30Invoice Me.buyerReferenceField = value End Set End Property - + ''' - _ + Public Property InvoicePeriod() As PeriodType() Get Return Me.invoicePeriodField @@ -42267,9 +42267,9 @@ Namespace Peppol.BISBilling30Invoice Me.invoicePeriodField = value End Set End Property - + ''' - _ + Public Property OrderReference() As OrderReferenceType Get Return Me.orderReferenceField @@ -42278,9 +42278,9 @@ Namespace Peppol.BISBilling30Invoice Me.orderReferenceField = value End Set End Property - + ''' - _ + Public Property BillingReference() As BillingReferenceType() Get Return Me.billingReferenceField @@ -42289,9 +42289,9 @@ Namespace Peppol.BISBilling30Invoice Me.billingReferenceField = value End Set End Property - + ''' - _ + Public Property DespatchDocumentReference() As DocumentReferenceType() Get Return Me.despatchDocumentReferenceField @@ -42300,9 +42300,9 @@ Namespace Peppol.BISBilling30Invoice Me.despatchDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ReceiptDocumentReference() As DocumentReferenceType() Get Return Me.receiptDocumentReferenceField @@ -42311,9 +42311,9 @@ Namespace Peppol.BISBilling30Invoice Me.receiptDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property StatementDocumentReference() As DocumentReferenceType() Get Return Me.statementDocumentReferenceField @@ -42322,9 +42322,9 @@ Namespace Peppol.BISBilling30Invoice Me.statementDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property OriginatorDocumentReference() As DocumentReferenceType() Get Return Me.originatorDocumentReferenceField @@ -42333,9 +42333,9 @@ Namespace Peppol.BISBilling30Invoice Me.originatorDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ContractDocumentReference() As DocumentReferenceType() Get Return Me.contractDocumentReferenceField @@ -42344,9 +42344,9 @@ Namespace Peppol.BISBilling30Invoice Me.contractDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property AdditionalDocumentReference() As DocumentReferenceType() Get Return Me.additionalDocumentReferenceField @@ -42355,9 +42355,9 @@ Namespace Peppol.BISBilling30Invoice Me.additionalDocumentReferenceField = value End Set End Property - + ''' - _ + Public Property ProjectReference() As ProjectReferenceType() Get Return Me.projectReferenceField @@ -42366,9 +42366,9 @@ Namespace Peppol.BISBilling30Invoice Me.projectReferenceField = value End Set End Property - + ''' - _ + Public Property Signature() As SignatureType() Get Return Me.signatureField @@ -42377,9 +42377,9 @@ Namespace Peppol.BISBilling30Invoice Me.signatureField = value End Set End Property - + ''' - _ + Public Property AccountingSupplierParty() As SupplierPartyType Get Return Me.accountingSupplierPartyField @@ -42388,9 +42388,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingSupplierPartyField = value End Set End Property - + ''' - _ + Public Property AccountingCustomerParty() As CustomerPartyType Get Return Me.accountingCustomerPartyField @@ -42399,9 +42399,9 @@ Namespace Peppol.BISBilling30Invoice Me.accountingCustomerPartyField = value End Set End Property - + ''' - _ + Public Property PayeeParty() As PartyType Get Return Me.payeePartyField @@ -42410,9 +42410,9 @@ Namespace Peppol.BISBilling30Invoice Me.payeePartyField = value End Set End Property - + ''' - _ + Public Property BuyerCustomerParty() As CustomerPartyType Get Return Me.buyerCustomerPartyField @@ -42421,9 +42421,9 @@ Namespace Peppol.BISBilling30Invoice Me.buyerCustomerPartyField = value End Set End Property - + ''' - _ + Public Property SellerSupplierParty() As SupplierPartyType Get Return Me.sellerSupplierPartyField @@ -42432,9 +42432,9 @@ Namespace Peppol.BISBilling30Invoice Me.sellerSupplierPartyField = value End Set End Property - + ''' - _ + Public Property TaxRepresentativeParty() As PartyType Get Return Me.taxRepresentativePartyField @@ -42443,9 +42443,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxRepresentativePartyField = value End Set End Property - + ''' - _ + Public Property Delivery() As DeliveryType() Get Return Me.deliveryField @@ -42454,9 +42454,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryField = value End Set End Property - + ''' - _ + Public Property DeliveryTerms() As DeliveryTermsType Get Return Me.deliveryTermsField @@ -42465,9 +42465,9 @@ Namespace Peppol.BISBilling30Invoice Me.deliveryTermsField = value End Set End Property - + ''' - _ + Public Property PaymentMeans() As PaymentMeansType() Get Return Me.paymentMeansField @@ -42476,9 +42476,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentMeansField = value End Set End Property - + ''' - _ + Public Property PaymentTerms() As PaymentTermsType() Get Return Me.paymentTermsField @@ -42487,9 +42487,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentTermsField = value End Set End Property - + ''' - _ + Public Property PrepaidPayment() As PaymentType() Get Return Me.prepaidPaymentField @@ -42498,9 +42498,9 @@ Namespace Peppol.BISBilling30Invoice Me.prepaidPaymentField = value End Set End Property - + ''' - _ + Public Property AllowanceCharge() As AllowanceChargeType() Get Return Me.allowanceChargeField @@ -42509,9 +42509,9 @@ Namespace Peppol.BISBilling30Invoice Me.allowanceChargeField = value End Set End Property - + ''' - _ + Public Property TaxExchangeRate() As ExchangeRateType Get Return Me.taxExchangeRateField @@ -42520,9 +42520,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxExchangeRateField = value End Set End Property - + ''' - _ + Public Property PricingExchangeRate() As ExchangeRateType Get Return Me.pricingExchangeRateField @@ -42531,9 +42531,9 @@ Namespace Peppol.BISBilling30Invoice Me.pricingExchangeRateField = value End Set End Property - + ''' - _ + Public Property PaymentExchangeRate() As ExchangeRateType Get Return Me.paymentExchangeRateField @@ -42542,9 +42542,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentExchangeRateField = value End Set End Property - + ''' - _ + Public Property PaymentAlternativeExchangeRate() As ExchangeRateType Get Return Me.paymentAlternativeExchangeRateField @@ -42553,9 +42553,9 @@ Namespace Peppol.BISBilling30Invoice Me.paymentAlternativeExchangeRateField = value End Set End Property - + ''' - _ + Public Property TaxTotal() As TaxTotalType() Get Return Me.taxTotalField @@ -42564,9 +42564,9 @@ Namespace Peppol.BISBilling30Invoice Me.taxTotalField = value End Set End Property - + ''' - _ + Public Property WithholdingTaxTotal() As TaxTotalType() Get Return Me.withholdingTaxTotalField @@ -42575,9 +42575,9 @@ Namespace Peppol.BISBilling30Invoice Me.withholdingTaxTotalField = value End Set End Property - + ''' - _ + Public Property LegalMonetaryTotal() As MonetaryTotalType Get Return Me.legalMonetaryTotalField @@ -42586,9 +42586,9 @@ Namespace Peppol.BISBilling30Invoice Me.legalMonetaryTotalField = value End Set End Property - + ''' - _ + Public Property InvoiceLine() As InvoiceLineType() Get Return Me.invoiceLineField