/* Options: Date: 2024-10-18 04:31:42 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetRights.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Get rights for application or object */ public static class GetRights implements IReturn { public ArrayList Rights = null; public String EntityName = null; public String ID = null; public ArrayList getRights() { return Rights; } public GetRights setRights(ArrayList value) { this.Rights = value; return this; } public String getEntityName() { return EntityName; } public GetRights setEntityName(String value) { this.EntityName = value; return this; } public String getId() { return ID; } public GetRights setId(String value) { this.ID = value; return this; } private static Object responseType = RightsInformation.class; public Object getResponseType() { return responseType; } } public static class RightsInformation { public Hashtable Rights = null; public Hashtable getRights() { return Rights; } public RightsInformation setRights(Hashtable value) { this.Rights = value; return this; } } }