/* Options: Date: 2024-07-03 13:23:36 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: SyncToiCal.* //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/icalsync/{companyid}/{token}", Verbs="GET") public static class SyncToiCal implements 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") public UUID CompanyId = null; /** * Query for specific Resources, default is all resources */ @ApiMember(Description="Query for specific Resources, default is all resources", IsRequired=true, ParameterType="query") public ArrayList ResourceIds = null; /** * ICalSync Token */ @ApiMember(Description="ICalSync Token", IsRequired=true, ParameterType="path") public String Token = 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; public UUID getCompanyId() { return CompanyId; } public SyncToiCal setCompanyId(UUID value) { this.CompanyId = value; return this; } public ArrayList getResourceIds() { return ResourceIds; } public SyncToiCal setResourceIds(ArrayList value) { this.ResourceIds = value; return this; } public String getToken() { return Token; } public SyncToiCal setToken(String value) { this.Token = value; return this; } public Boolean isIncludeSchedules() { return IncludeSchedules; } public SyncToiCal setIncludeSchedules(Boolean value) { this.IncludeSchedules = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }