mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 23:03:32 +00:00
* Move send in libs/common * Move send in libs/angular * Move send in browser * Move send in cli * Move send in desktop * Move send in web
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
import { BaseResponse } from "../../../../models/response/base.response";
|
|
|
|
export class SendTextApi extends BaseResponse {
|
|
text: string;
|
|
hidden: boolean;
|
|
|
|
constructor(data: any = null) {
|
|
super(data);
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
this.text = this.getResponseProperty("Text");
|
|
this.hidden = this.getResponseProperty("Hidden") || false;
|
|
}
|
|
}
|