mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
15 lines
337 B
TypeScript
15 lines
337 B
TypeScript
/**
|
|
* Class representing a query parameter (query?fieldName=fieldValue) used in FindListOptions object
|
|
*/
|
|
export class RequestParam {
|
|
constructor(
|
|
public fieldName: string,
|
|
public fieldValue: any,
|
|
public encodeValue = true,
|
|
) {
|
|
if (encodeValue) {
|
|
this.fieldValue = encodeURIComponent(fieldValue);
|
|
}
|
|
}
|
|
}
|