/* Options: Date: 2024-06-16 23:04:27 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateResourceType.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/resourcetypes", Verbs="POST") @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 CreateResourceType : IReturn, ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") var CompanyId:UUID? = null /** * The resourcetype name */ @ApiMember(Description="The resourcetype name") var Name:String? = null /** * The resources to be included */ @ApiMember(Description="The resources to be included") var Resources:ArrayList = ArrayList() /** * The resourcetype description */ @ApiMember(Description="The resourcetype description") var Description:String? = null /** * If resourcetype is active or not */ @ApiMember(Description="If resourcetype is active or not") var Active:Boolean? = null companion object { private val responseType = ResourceTypeQueryResponse::class.java } override fun getResponseType(): Any? = CreateResourceType.responseType } open class ResourceTypeQueryResponse { /** * The resourcetype id */ @ApiMember(Description="The resourcetype id") var Id:Int? = null /** * The resourcetype name */ @ApiMember(Description="The resourcetype name") var Name:String? = null /** * The resourcetype description */ @ApiMember(Description="The resourcetype description") var Description:String? = null /** * The resources in the resourcetype. Only shows active resources if not admin. */ @ApiMember(Description="The resources in the resourcetype. Only shows active resources if not admin.") var Resources:ArrayList = ArrayList() /** * If resourcetype is active or not */ @ApiMember(Description="If resourcetype is active or not") var Active:Boolean? = null /** * Then date when the resource was created */ @ApiMember(Description="Then date when the resource was created") var Created:Date? = null /** * Then date when the resource was updated */ @ApiMember(Description="Then date when the resource was updated") var Updated:Date? = null } open interface ICompany { var CompanyId:UUID? } open class AddResourceTypeResource { /** * The resource id */ @ApiMember(Description="The resource id") var Id:Int? = null /** * The priority of the resource. If no priority is set it will take random resource when booking a time. */ @ApiMember(Description="The priority of the resource. If no priority is set it will take random resource when booking a time.") var Priority:Int? = null } open class ResourceTypeResource { /** * The resource id */ @ApiMember(Description="The resource id") var Id:Int? = null /** * The resource name */ @ApiMember(Description="The resource name") var Name:String? = null /** * The resource status */ @ApiMember(Description="The resource status") var Active:Boolean? = null /** * The resource description */ @ApiMember(Description="The resource description") var Description:String? = null /** * The resource email */ @ApiMember(Description="The resource email") var Email:String? = null /** * The resource phone */ @ApiMember(Description="The resource phone") var Phone:String? = null /** * The resource color */ @ApiMember(Description="The resource color") var Color:String? = null /** * The resource image */ @ApiMember(Description="The resource image") var ImageUrl:Uri? = null /** * The priority of the resource */ @ApiMember(Description="The priority of the resource") var Priority:Int? = null /** * If the resource want to receive email notifications */ @ApiMember(Description="If the resource want to receive email notifications") var EmailNotification:Boolean? = null /** * If the resource want to receive sms notifications */ @ApiMember(Description="If the resource want to receive sms notifications") var SMSNotification:Boolean? = null /** * If the resource want to receive email reminders */ @ApiMember(Description="If the resource want to receive email reminders") var EmailReminder:Boolean? = null /** * If the resource want to receive sms reminders */ @ApiMember(Description="If the resource want to receive sms reminders") var SMSReminder:Boolean? = null }