(* Options: Date: 2025-10-16 09:16:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SyncCompanyMembers.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.Net open System.Net.Http.Headers [] [] [] type SyncCompanyMembers() = /// ///Should we delete emails that do not exist in BokaMera. /// [] member val DeleteNonExisting:Boolean = new Boolean() with get,set /// ///Determines if it is a test user /// [] member val Test:Boolean = new Boolean() with get,set /// ///Determines if it sync was executed manually by click in superAdmin /// [] member val Manual:Boolean = new Boolean() with get,set /// ///The company id of member of which members you want to sync. /// [] member val MemberCompanyId:Nullable = new Nullable() with get,set