@@ -1244,6 +1244,8 @@ public enum Channel
12441244 PEPPOL ,
12451245
12461246 EPOST ,
1247+
1248+ PENDING ,
12471249 }
12481250
12491251 [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "XmlSchemaClassGenerator" , "2.0.594.0" ) ]
@@ -1722,6 +1724,9 @@ public Message()
17221724 [ System . Xml . Serialization . XmlElementAttribute ( "print-if-unread" ) ]
17231725 public Print_If_Unread Print_If_Unread { get ; set ; }
17241726
1727+ [ System . Xml . Serialization . XmlElementAttribute ( "request-for-registration" ) ]
1728+ public Request_For_Registration Request_For_Registration { get ; set ; }
1729+
17251730 [ System . Xml . Serialization . XmlElementAttribute ( "batch" ) ]
17261731 public Batch Batch { get ; set ; }
17271732 }
@@ -1774,6 +1779,28 @@ public partial class Print_If_Unread
17741779 public Print_Details Print_Details { get ; set ; }
17751780 }
17761781
1782+ [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "XmlSchemaClassGenerator" , "2.0.594.0" ) ]
1783+ [ System . SerializableAttribute ( ) ]
1784+ [ System . Xml . Serialization . XmlTypeAttribute ( "request-for-registration" , Namespace = "http://api.digipost.no/schema/v8" ) ]
1785+ [ System . Diagnostics . DebuggerStepThroughAttribute ( ) ]
1786+ [ System . ComponentModel . DesignerCategoryAttribute ( "code" ) ]
1787+ public partial class Request_For_Registration
1788+ {
1789+
1790+ [ System . ComponentModel . DataAnnotations . RequiredAttribute ( ) ]
1791+ [ System . Xml . Serialization . XmlElementAttribute ( "registration-deadline" , DataType = "dateTime" ) ]
1792+ public System . DateTime Registration_Deadline { get ; set ; }
1793+
1794+ [ System . Xml . Serialization . XmlElementAttribute ( "phone-number" ) ]
1795+ public string Phone_Number { get ; set ; }
1796+
1797+ [ System . Xml . Serialization . XmlElementAttribute ( "email-address" ) ]
1798+ public string Email_Address { get ; set ; }
1799+
1800+ [ System . Xml . Serialization . XmlElementAttribute ( "print-details" ) ]
1801+ public Print_Details Print_Details { get ; set ; }
1802+ }
1803+
17771804 [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "XmlSchemaClassGenerator" , "2.0.594.0" ) ]
17781805 [ System . SerializableAttribute ( ) ]
17791806 [ System . Xml . Serialization . XmlTypeAttribute ( "batch" , Namespace = "http://api.digipost.no/schema/v8" ) ]
@@ -2339,6 +2366,7 @@ public partial class Event
23392366 [ System . Xml . Serialization . XmlIncludeAttribute ( typeof ( Failed_Print_Metadata ) ) ]
23402367 [ System . Xml . Serialization . XmlIncludeAttribute ( typeof ( Move_Files_From_Public_Sector_Metadata ) ) ]
23412368 [ System . Xml . Serialization . XmlIncludeAttribute ( typeof ( Postmarked_Metadata ) ) ]
2369+ [ System . Xml . Serialization . XmlIncludeAttribute ( typeof ( Request_For_Registration_Expired_Metadata ) ) ]
23422370 [ System . Xml . Serialization . XmlIncludeAttribute ( typeof ( Sms_Notification_Failed_Metadata ) ) ]
23432371 public abstract partial class Event_Metadata
23442372 {
@@ -2371,6 +2399,12 @@ public enum Event_Type
23712399 PEPPOL_DELIVERED ,
23722400
23732401 PEPPOL_FAILED ,
2402+
2403+ REQUEST_FOR_REGISTRATION_EXPIRED ,
2404+
2405+ REQUEST_FOR_REGISTRATION_DELIVERED_DIGIPOST ,
2406+
2407+ REQUEST_FOR_REGISTRATION_FAILED ,
23742408 }
23752409
23762410 [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "XmlSchemaClassGenerator" , "2.0.594.0" ) ]
@@ -2584,6 +2618,18 @@ public partial class Postmarked_Metadata : Event_Metadata
25842618 public System . DateTime Postmarked_Date { get ; set ; }
25852619 }
25862620
2621+ [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "XmlSchemaClassGenerator" , "2.0.594.0" ) ]
2622+ [ System . SerializableAttribute ( ) ]
2623+ [ System . Xml . Serialization . XmlTypeAttribute ( "request-for-registration-expired-metadata" , Namespace = "http://api.digipost.no/schema/v8" ) ]
2624+ [ System . Diagnostics . DebuggerStepThroughAttribute ( ) ]
2625+ [ System . ComponentModel . DesignerCategoryAttribute ( "code" ) ]
2626+ public partial class Request_For_Registration_Expired_Metadata : Event_Metadata
2627+ {
2628+
2629+ [ System . Xml . Serialization . XmlAttributeAttribute ( "fallback-channel" ) ]
2630+ public string Fallback_Channel { get ; set ; }
2631+ }
2632+
25872633 [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "XmlSchemaClassGenerator" , "2.0.594.0" ) ]
25882634 [ System . SerializableAttribute ( ) ]
25892635 [ System . Xml . Serialization . XmlTypeAttribute ( "inbox" , Namespace = "http://api.digipost.no/schema/v8" ) ]
0 commit comments