(* Options: Date: 2024-07-03 13:11:59 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: CustomFieldSlotsQuery.* //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 CustomFieldSlotsQueryResponse() = /// ///Table to which the field belongs /// [] member val Table:String = null with get,set /// ///Custom field id /// [] member val Id:Int32 = new Int32() with get,set /// ///Custom field column name /// [] member val Name:String = null with get,set /// ///The field datatype /// [] member val Datatype:String = null with get,set /// ///If the slot is free or occupied /// [] member val Occupied:Boolean = new Boolean() with get,set [] [] [] [] [] type CustomFieldSlotsQuery() = interface IReturn /// ///Company id to find custom fields for /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Table to which the field belongs /// [] member val Table:String = null with get,set /// ///If you want to receive only free slots (not occupied). /// [] member val FreeSlots:Nullable = new Nullable() with get,set