/* Options: Date: 2025-04-05 01:22:49 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: GetInactiveCompaniesReport.* //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="/superadmin/company/inactive/report", Verbs="GET") public static class GetInactiveCompaniesReport implements IReturn { public Integer Skip = null; public Integer Take = null; public Integer getSkip() { return Skip; } public GetInactiveCompaniesReport setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public GetInactiveCompaniesReport setTake(Integer value) { this.Take = value; return this; } private static Object responseType = InactiveCompaniesResponse.class; public Object getResponseType() { return responseType; } } public static class InactiveCompaniesResponse { public ArrayList ProcessedCompanies = null; public ArrayList getProcessedCompanies() { return ProcessedCompanies; } public InactiveCompaniesResponse setProcessedCompanies(ArrayList value) { this.ProcessedCompanies = value; return this; } } public static class InactiveCompanyResult { public UUID CompanyId = null; public Date LastActivityDate = null; public Date LastActivityNotificationDate = null; public Date DeletionTime = null; public InactivityAction Action = null; public UUID getCompanyId() { return CompanyId; } public InactiveCompanyResult setCompanyId(UUID value) { this.CompanyId = value; return this; } public Date getLastActivityDate() { return LastActivityDate; } public InactiveCompanyResult setLastActivityDate(Date value) { this.LastActivityDate = value; return this; } public Date getLastActivityNotificationDate() { return LastActivityNotificationDate; } public InactiveCompanyResult setLastActivityNotificationDate(Date value) { this.LastActivityNotificationDate = value; return this; } public Date getDeletionTime() { return DeletionTime; } public InactiveCompanyResult setDeletionTime(Date value) { this.DeletionTime = value; return this; } public InactivityAction getAction() { return Action; } public InactiveCompanyResult setAction(InactivityAction value) { this.Action = value; return this; } } public static enum InactivityAction { ActivityReminder, FinalWarning, Delete; } }