/* Options: Date: 2024-07-03 12:46:08 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: GoogleCalendarGetICals.* //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/googlecalendar/icals/{companyid}/{token}", Verbs="GET") open class GoogleCalendarGetICals : ICompany { /** * The company id */ @ApiMember(Description="The company id", IsRequired=true, ParameterType="path") var CompanyId:UUID? = null /** * Query for specific Resources, default is all resources */ @ApiMember(Description="Query for specific Resources, default is all resources", ParameterType="query") var ResourceIds:ArrayList? = 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 /** * GoogleCalendar Token */ @ApiMember(Description="GoogleCalendar Token", IsRequired=true, ParameterType="path") var Token:String? = null } open interface ICompany { var CompanyId:UUID? }