/* Options: Date: 2024-07-03 12:42:09 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: DeleteInactiveCustomers.* //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="/gdpr/customers/inactive", Verbs="DELETE") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") public static class DeleteInactiveCustomers implements 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; /** * Inactive customers since the date. Inactive means they haven't done any bookings since that date. */ @ApiMember(Description="Inactive customers since the date. Inactive means they haven't done any bookings since that date.", IsRequired=true) public Date InactiveSince = null; public UUID getCompanyId() { return CompanyId; } public DeleteInactiveCustomers setCompanyId(UUID value) { this.CompanyId = value; return this; } public Date getInactiveSince() { return InactiveSince; } public DeleteInactiveCustomers setInactiveSince(Date value) { this.InactiveSince = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }