/* Options: Date: 2025-09-15 14:36:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CustomFieldSlotsQuery.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/customfields/slots", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="You have too low privilegies to call this service", StatusCode=403) @ValidateRequest(Validator="IsAuthenticated") open class CustomFieldSlotsQuery : IReturn, ICompany { /** * Company id to find custom fields for */ @ApiMember(Description="Company id to find custom fields for", ParameterType="query") override var CompanyId:UUID? = null /** * Table to which the field belongs */ @ApiMember(Description="Table to which the field belongs", IsRequired=true) open var Table:String? = null /** * If you want to receive only free slots (not occupied). */ @ApiMember(Description="If you want to receive only free slots (not occupied).") open var FreeSlots:Boolean? = null companion object { private val responseType = CustomFieldSlotsQueryResponse::class.java } override fun getResponseType(): Any? = CustomFieldSlotsQuery.responseType } open class CustomFieldSlotsQueryResponse { /** * Table to which the field belongs */ @ApiMember(Description="Table to which the field belongs") open var Table:String? = null /** * Custom field id */ @ApiMember(Description="Custom field id") open var Id:Int? = null /** * Custom field column name */ @ApiMember(Description="Custom field column name") open var Name:String? = null /** * The field datatype */ @ApiMember(Description="The field datatype") open var Datatype:String? = null /** * If the slot is free or occupied */ @ApiMember(Description="If the slot is free or occupied") open var Occupied:Boolean? = null } interface ICompany { var CompanyId:UUID? }