/* Options: Date: 2024-07-03 13:05:16 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: CreateICalSyncToken.* //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", Verbs="POST") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") public static class CreateICalSyncToken implements 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.") 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; public UUID getCompanyId() { return CompanyId; } public CreateICalSyncToken setCompanyId(UUID value) { this.CompanyId = value; return this; } public ArrayList getResourceIds() { return ResourceIds; } public CreateICalSyncToken setResourceIds(ArrayList value) { this.ResourceIds = value; return this; } private static Object responseType = ICalSyncTokenResponse.class; public Object getResponseType() { return responseType; } } public static class ICalSyncTokenResponse { public String Result = null; public String getResult() { return Result; } public ICalSyncTokenResponse setResult(String value) { this.Result = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }