/* Options: Date: 2024-07-03 14:17:46 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GoogleCalendarGetICals.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/sync/googlecalendar/icals/{companyid}/{token}", Verbs="GET") public static class GoogleCalendarGetICals implements ICompany { /** * The company id */ @ApiMember(Description="The company id", IsRequired=true, ParameterType="path") public UUID CompanyId = null; /** * Query for specific Resources, default is all resources */ @ApiMember(Description="Query for specific Resources, default is all resources", ParameterType="query") public ArrayList ResourceIds = null; /** * If you want to include the schedule time slots */ @ApiMember(Description="If you want to include the schedule time slots", ParameterType="query") public Boolean IncludeSchedules = null; /** * GoogleCalendar Token */ @ApiMember(Description="GoogleCalendar Token", IsRequired=true, ParameterType="path") public String Token = null; public UUID getCompanyId() { return CompanyId; } public GoogleCalendarGetICals setCompanyId(UUID value) { this.CompanyId = value; return this; } public ArrayList getResourceIds() { return ResourceIds; } public GoogleCalendarGetICals setResourceIds(ArrayList value) { this.ResourceIds = value; return this; } public Boolean isIncludeSchedules() { return IncludeSchedules; } public GoogleCalendarGetICals setIncludeSchedules(Boolean value) { this.IncludeSchedules = value; return this; } public String getToken() { return Token; } public GoogleCalendarGetICals setToken(String value) { this.Token = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }