/* Options: Date: 2025-12-06 12:17:58 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UsersGroupsEdit.* //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="/users_groups/{Id}", Verbs="PUT") @DataContract public static class UsersGroupsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long tenantsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long appUserId = null; @DataMember(Order=4) @Validate(Validator="NotNull") public String name = null; @DataMember(Order=5) @Validate(Validator="NotNull") public Boolean isPaid = null; public Long getId() { return id; } public UsersGroupsEdit setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public UsersGroupsEdit setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getAppUserId() { return appUserId; } public UsersGroupsEdit setAppUserId(Long value) { this.appUserId = value; return this; } public String getName() { return name; } public UsersGroupsEdit setName(String value) { this.name = value; return this; } public Boolean getIsPaid() { return isPaid; } public UsersGroupsEdit setIsPaid(Boolean value) { this.isPaid = value; return this; } private static Object responseType = UsersGroupsEditResponse.class; public Object getResponseType() { return responseType; } } public static class UsersGroupsEditResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=2) public Long tenantsId = null; @DataMember(Order=3) public Long appUserId = null; @DataMember(Order=4) public String name = null; @DataMember(Order=5) public Boolean isPaid = null; @DataMember(Order=7) public ResponseStatus responseStatus = null; public Long getId() { return id; } public UsersGroupsEditResponse setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public UsersGroupsEditResponse setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getAppUserId() { return appUserId; } public UsersGroupsEditResponse setAppUserId(Long value) { this.appUserId = value; return this; } public String getName() { return name; } public UsersGroupsEditResponse setName(String value) { this.name = value; return this; } public Boolean getIsPaid() { return isPaid; } public UsersGroupsEditResponse setIsPaid(Boolean value) { this.isPaid = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public UsersGroupsEditResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }