/* Options: Date: 2025-04-05 05:35:58 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: DeleteInactiveCompaniesRequest.* //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", Verbs="POST") public static class DeleteInactiveCompaniesRequest implements IReturn { /** * Number of companies to process for deletion or notification in each run. */ @ApiMember(Description="Number of companies to process for deletion or notification in each run.", IsRequired=true) public Integer BatchLimit = null; public Integer getBatchLimit() { return BatchLimit; } public DeleteInactiveCompaniesRequest setBatchLimit(Integer value) { this.BatchLimit = 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; } }