(* Options: Date: 2024-10-18 04:30:40 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PostQuickRegistrationOptions.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace IDB.API.DTO.Document open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Drawing [] type RegistrationprofileInformation() = member val ID:Nullable = new Nullable() with get,set member val Name:String = null with get,set member val WizardAutomatischDoorlopen:Boolean = new Boolean() with get,set type DragDropAction = | CopyEmailIncludingAttachments = 0 | CopyEmailIncludingAndSeparateAttachments = 1 | CopyEmailExcludingAndSeparateAttachments = 2 | CopyEmailExcludingAttachments = 3 | CopyOnlyAttachments = 4 | MoveEmailIncludingAttachments = 5 | MoveEmailIncludingAndSeparateAttachments = 6 | MoveEmailExcludingAndSeparateAttachments = 7 | MoveEmailExcludingAttachments = 8 | MoveOnlyAttachments = 9 | Files = 10 | FileStream = 11 [] type QuickRegistrationOptions() = interface IReturn member val ProgCode:String = null with get,set member val RegistrationProfileID:Nullable = new Nullable() with get,set member val RegistrationProfiles:ResizeArray = new ResizeArray() with get,set member val AttachmentRegistrationProfileID:Nullable = new Nullable() with get,set member val AttachmentProfiles:ResizeArray = new ResizeArray() with get,set member val RegistrationProfileNewEmailID:Nullable = new Nullable() with get,set member val EMailActie:String = null with get,set member val EMailActieNieuw:String = null with get,set member val EMailActieBeantwoorden:String = null with get,set member val EMailActieDoorsturen:String = null with get,set member val DefaultDragDropAction:DragDropAction = new DragDropAction() with get,set member val RegistratieWizard365URL:String = null with get,set member val ApplicationName:String = null with get,set member val Extension:String = null with get,set member val MenuTonenBijSlepen:Boolean = new Boolean() with get,set member val AllowMultipleRegistrations:Boolean = new Boolean() with get,set member val MinimumAttachmentSize:Int32 = new Int32() with get,set member val AllowEmptyEmailInRegistrationprofileWizard:Boolean = new Boolean() with get,set [] type PostQuickRegistrationOptions() = inherit QuickRegistrationOptions() interface IReturnVoid