(* Options: Date: 2024-06-16 21:51:15 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeleteBookingPrintout.* //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 BookingPrintoutQueryResponse() = /// ///Report id /// [] member val Id:Int32 = new Int32() with get,set /// ///Report Name /// [] member val Name:String = null with get,set /// ///Report header left cell content /// [] member val HeaderLeftCell:String = null with get,set /// ///Report header middle cell content /// [] member val HeaderMiddleCell:String = null with get,set /// ///Report header right cell content /// [] member val HeaderRightCell:String = null with get,set /// ///Report body cell content /// [] member val BodyCell:String = null with get,set /// ///Report footer left cell content /// [] member val FooterLeftCell:String = null with get,set /// ///Report footer middle cell content /// [] member val FooterMiddleCell:String = null with get,set /// ///Report footer right cell content /// [] member val FooterRightCell:String = null with get,set [] [] [] [] type DeleteBookingPrintout() = interface IReturn /// ///Enter the company you want to see add a token for, if blank and you are an admin, your company id will be used /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Report id /// [] member val Id:Int32 = new Int32() with get,set