Updated delete attachment to conform with the server side changes (#19014)
parent
e760b1c923
commit
61326979b9
@ -0,0 +1,12 @@
|
||||
import { BaseResponse } from "../../../models/response/base.response";
|
||||
|
||||
import { CipherResponse } from "./cipher.response";
|
||||
|
||||
export class DeleteAttachmentResponse extends BaseResponse {
|
||||
cipher: CipherResponse;
|
||||
|
||||
constructor(response: any) {
|
||||
super(response);
|
||||
this.cipher = new CipherResponse(this.getResponseProperty("Cipher"));
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue