/* Options: Date: 2025-12-06 12:29:34 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: UsersGroupsUsersEdit.* //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_users/{Id}", Verbs="PUT") @DataContract public static class UsersGroupsUsersEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long usersGroupsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long appUserId = null; public Long getId() { return id; } public UsersGroupsUsersEdit setId(Long value) { this.id = value; return this; } public Long getUsersGroupsId() { return usersGroupsId; } public UsersGroupsUsersEdit setUsersGroupsId(Long value) { this.usersGroupsId = value; return this; } public Long getAppUserId() { return appUserId; } public UsersGroupsUsersEdit setAppUserId(Long value) { this.appUserId = value; return this; } private static Object responseType = UsersGroupsUsersEditResponse.class; public Object getResponseType() { return responseType; } } public static class UsersGroupsUsersEditResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=2) public Long usersGroupsId = null; @DataMember(Order=3) public Long appUserId = null; @DataMember(Order=5) public ResponseStatus responseStatus = null; public Long getId() { return id; } public UsersGroupsUsersEditResponse setId(Long value) { this.id = value; return this; } public Long getUsersGroupsId() { return usersGroupsId; } public UsersGroupsUsersEditResponse setUsersGroupsId(Long value) { this.usersGroupsId = value; return this; } public Long getAppUserId() { return appUserId; } public UsersGroupsUsersEditResponse setAppUserId(Long value) { this.appUserId = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public UsersGroupsUsersEditResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }