/* Options: Date: 2026-09-01 03:42:41 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: UsersGroupsUsersAutoQueryEdit.* //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 UsersGroupsUsersAutoQueryEdit extends UsersGroupsUsers implements IReturn, IUpdateDb { private static Object responseType = UsersGroupsUsers.class; public Object getResponseType() { return responseType; } } public static class UsersGroupsUsers { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() @References(UsersGroups.class) public Long usersGroupsId = null; @DataMember(Order=3) @Required() @References(AppUser.class) public Long appUserId = null; public Long getId() { return id; } public UsersGroupsUsers setId(Long value) { this.id = value; return this; } public Long getUsersGroupsId() { return usersGroupsId; } public UsersGroupsUsers setUsersGroupsId(Long value) { this.usersGroupsId = value; return this; } public Long getAppUserId() { return appUserId; } public UsersGroupsUsers setAppUserId(Long value) { this.appUserId = 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; } } public static class Tenants { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() @References(Zones.class) public Long mainZonesId = null; @DataMember(Order=3) public Boolean isPublic = null; public Long getId() { return id; } public Tenants setId(Long value) { this.id = value; return this; } public Long getMainZonesId() { return mainZonesId; } public Tenants setMainZonesId(Long value) { this.mainZonesId = value; return this; } public Boolean getIsPublic() { return isPublic; } public Tenants setIsPublic(Boolean value) { this.isPublic = value; return this; } } public static class Zones { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() @References(Tenants.class) public Long tenantsId = null; @DataMember(Order=3) @Required() public String name = null; @DataMember(Order=4) @Required() public Boolean isMain = null; @DataMember(Order=5) @Required() public Boolean isDefault = null; public Long getId() { return id; } public Zones setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public Zones setTenantsId(Long value) { this.tenantsId = value; return this; } public String getName() { return name; } public Zones setName(String value) { this.name = value; return this; } public Boolean getIsMain() { return isMain; } public Zones setIsMain(Boolean value) { this.isMain = value; return this; } public Boolean getIsDefault() { return isDefault; } public Zones setIsDefault(Boolean value) { this.isDefault = value; return this; } } }