/* Options: Date: 2024-07-03 12:50:07 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SyncToiCal.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/sync/icalsync/{companyid}/{token}", Verbs="GET") open class SyncToiCal : ICompany { /** * Enter the company, if blank and you are an admin, your company id will be used */ @ApiMember(Description="Enter the company, if blank and you are an admin, your company id will be used", ParameterType="path") var CompanyId:UUID? = null /** * Query for specific Resources, default is all resources */ @ApiMember(Description="Query for specific Resources, default is all resources", IsRequired=true, ParameterType="query") var ResourceIds:ArrayList? = null /** * ICalSync Token */ @ApiMember(Description="ICalSync Token", IsRequired=true, ParameterType="path") var Token:String? = null /** * If you want to include the schedule time slots */ @ApiMember(Description="If you want to include the schedule time slots", ParameterType="query") var IncludeSchedules:Boolean? = null } open interface ICompany { var CompanyId:UUID? }