// FIXME: Update this file to be type safe and remove this and next line // @ts-strict-ignore import { BaseResponse } from "../../../models/response/base.response"; import { SecureNoteType } from "../../enums"; export class SecureNoteApi extends BaseResponse { type: SecureNoteType; constructor(data: any = null) { super(data); if (data == null) { return; } this.type = this.getResponseProperty("Type"); } }