/* Options: Date: 2025-12-06 06:52:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: BatchAssignUsersToRole.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/roles/batch-assign", Verbs="POST") public static class BatchAssignUsersToRole implements IReturn { public Integer RoleId = null; public ArrayList UserIds = new ArrayList(); public Integer getRoleId() { return RoleId; } public BatchAssignUsersToRole setRoleId(Integer value) { this.RoleId = value; return this; } public ArrayList getUserIds() { return UserIds; } public BatchAssignUsersToRole setUserIds(ArrayList value) { this.UserIds = value; return this; } private static Object responseType = BatchAssignUsersToRoleResponse.class; public Object getResponseType() { return responseType; } } public static class BatchAssignUsersToRoleResponse { public Integer Inserted = null; public Integer Requested = null; public Integer Skipped = null; public ResponseStatus ResponseStatus = null; public Integer getInserted() { return Inserted; } public BatchAssignUsersToRoleResponse setInserted(Integer value) { this.Inserted = value; return this; } public Integer getRequested() { return Requested; } public BatchAssignUsersToRoleResponse setRequested(Integer value) { this.Requested = value; return this; } public Integer getSkipped() { return Skipped; } public BatchAssignUsersToRoleResponse setSkipped(Integer value) { this.Skipped = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public BatchAssignUsersToRoleResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }