import { BaseResponse } from "./base.response"; export class PasswordHistoryResponse extends BaseResponse { password: string; lastUsedDate: string; constructor(response: any) { super(response); this.password = this.getResponseProperty("Password"); this.lastUsedDate = this.getResponseProperty("LastUsedDate"); } }