(* Options: Date: 2026-04-26 18:38:40 Version: 10.05 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: QueryAxemaUserSyncJobs.* //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 ICompany = abstract CompanyId:Nullable with get,set type AxemaUserSyncStatus = | Pending = 0 | Processing = 1 | Completed = 2 | Failed = 3 [] type AxemaUserSyncJobResponse() = member val Id:Guid = new Guid() with get,set member val CompanyId:Guid = new Guid() with get,set member val Status:Int32 = new Int32() with get,set member val StatusName:String = null with get,set member val UsersFound:Nullable = new Nullable() with get,set member val UsersCreated:Nullable = new Nullable() with get,set member val UsersUpdated:Nullable = new Nullable() with get,set member val ErrorMessage:String = null with get,set member val CreatedDate:DateTime = new DateTime() with get,set member val UpdatedDate:DateTime = new DateTime() with get,set [] type QueryAxemaUserSyncJobsResponse() = member val Results:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] [] type QueryAxemaUserSyncJobs() = interface IReturn /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Filter by status (0=Pending, 1=Processing, 2=Completed, 3=Failed). /// [] member val Status:Nullable = new Nullable() with get,set