/* Options: Date: 2024-06-17 09:58:07 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CheckCompanyTrial.* //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="/trials/company/check", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") public static class CheckCompanyTrial implements ICompany { /** * Enter the company and id you want to see the information for a resource, if blank company id and you are an admin, your company id will be used. If blank id, all resources will be shown */ @ApiMember(Description="Enter the company and id you want to see the information for a resource, if blank company id and you are an admin, your company id will be used. If blank id, all resources will be shown ", ParameterType="query") public UUID CompanyId = null; /** * The TrialType you want to check */ @ApiMember(Description="The TrialType you want to check", IsRequired=true, ParameterType="query") public Integer TrialTypeId = null; public UUID getCompanyId() { return CompanyId; } public CheckCompanyTrial setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getTrialTypeId() { return TrialTypeId; } public CheckCompanyTrial setTrialTypeId(Integer value) { this.TrialTypeId = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }