mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 13:23:18 +00:00
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
import { BaseResponse } from "./baseResponse";
|
|
|
|
export class FolderResponse extends BaseResponse {
|
|
id: string;
|
|
name: string;
|
|
revisionDate: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.name = this.getResponseProperty("Name");
|
|
this.revisionDate = this.getResponseProperty("RevisionDate");
|
|
}
|
|
}
|