This repository has been archived on 2024-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
rocketchat-scim/scim/ListResponse.ts
2022-02-11 14:13:06 +01:00

11 lines
327 B
TypeScript

import { ISCIMResource } from "./Interfaces";
export class SCIMListResponse {
public readonly schemas = [
"urn:ietf:params:scim:api:messages:2.0:ListResponse",
];
public totalResults: number;
public startIndex: number = 1;
public itemsPerPage: number;
public Resources: Array<ISCIMResource>;
}