(* Options: Date: 2025-12-06 07:04:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetBackofficeUsersRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BackofficeApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type Locale = | EnUs = 0 | NbNo = 1 [] type BackofficeUserDto() = member val Id:Int64 = new Int64() with get,set member val Email:String = null with get,set member val FirstName:String = null with get,set member val LastName:String = null with get,set member val MobilePhone:String = null with get,set member val Locale:Locale = new Locale() with get,set [] type GetBackofficeUsersResponse() = member val Users:ResizeArray = new ResizeArray() with get,set [] [] type GetBackofficeUsersRequest() = interface IReturn interface IGet