/* Options: Date: 2024-07-03 12:31:21 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: CheckCompanyTrial.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/trials/company/check", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class CheckCompanyTrial : 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") var CompanyId:UUID? = null /** * The TrialType you want to check */ @ApiMember(Description="The TrialType you want to check", IsRequired=true, ParameterType="query") var TrialTypeId:Int? = null } open interface ICompany { var CompanyId:UUID? }