65600: Renamed FindAllOptions to FindListOptions

This commit is contained in:
Marie Verdonck
2019-10-16 12:44:56 +02:00
parent a4bf1a64c7
commit 98c8eb558a
23 changed files with 64 additions and 65 deletions

View File

@@ -138,7 +138,7 @@ export class FindByIDRequest extends GetRequest {
}
}
export class FindAllOptions {
export class FindListOptions {
scopeID?: string;
elementsPerPage?: number;
currentPage?: number;
@@ -151,7 +151,7 @@ export class FindAllRequest extends GetRequest {
constructor(
uuid: string,
href: string,
public body?: FindAllOptions,
public body?: FindListOptions,
) {
super(uuid, href);
}