(* Options: Date: 2024-07-03 12:42:15 Version: 8.23 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: NewsletterCustomerQuery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type ICompany = abstract CompanyId:Nullable with get,set [] type NewsletterCustomerInfo() = member val Id:Guid = new Guid() with get,set member val Firstname:String = null with get,set member val Lastname:String = null with get,set member val Email:String = null with get,set member val Phone:String = null with get,set member val FacebookUserName:String = null with get,set member val ImageUrl:Uri = null with get,set [] type NewsletterCustomerQueryResponse() = member val Id:Guid = new Guid() with get,set member val Customer:NewsletterCustomerInfo = null with get,set [] [] [] [] type NewsletterCustomerQuery() = 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 /// ///Search for customer has done minimum number of bookings. /// [] member val CustomerMinBookings:Nullable = new Nullable() with get,set /// ///Search for customer has done maximum number of bookings. /// [] member val CustomerMaxBookings:Nullable = new Nullable() with get,set /// ///Search for customer has booked any of the service in the list (List contain service id's). /// [] member val BookedServiceIds:Int32[] = [||] with get,set /// ///Search interval From datetime . /// [] member val From:Nullable = new Nullable() with get,set /// ///Search interval To datetime . /// [] member val To:Nullable = new Nullable() with get,set /// ///The max number of records you want to collect /// [] member val MaxRecords:Nullable = new Nullable() with get,set /// ///If you want to include the full customer information in the response /// [] member val IncludeCustomerInformation:Boolean = new Boolean() with get,set