/* Options: Date: 2026-09-01 03:42:42 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-stage.smartfarmertech.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UsersGroupsAutoQueryDelete.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class UsersGroupsAutoQueryDelete implements IReturnVoid, IDeleteDb { @DataMember(Order=1) public Long id = null; @DataMember(Order=7) public ResponseStatus responseStatus = null; public Long getId() { return id; } public UsersGroupsAutoQueryDelete setId(Long value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public UsersGroupsAutoQueryDelete setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class UsersGroups { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() @References(Tenants.class) public Long tenantsId = null; @DataMember(Order=3) @Required() @References(AppUser.class) public Long appUserId = null; @DataMember(Order=4) @Required() public String name = null; @DataMember(Order=5) @Required() public Boolean isPaid = null; public Long getId() { return id; } public UsersGroups setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public UsersGroups setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getAppUserId() { return appUserId; } public UsersGroups setAppUserId(Long value) { this.appUserId = value; return this; } public String getName() { return name; } public UsersGroups setName(String value) { this.name = value; return this; } public Boolean getIsPaid() { return isPaid; } public UsersGroups setIsPaid(Boolean value) { this.isPaid = value; return this; } } }