feat: added saveRecord method

This commit is contained in:
StevanFreeborn
2023-02-13 20:21:28 -06:00
parent f07cd3043a
commit 757e773f9f
7 changed files with 385 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
import { CreatedWithIdResponse } from './CreatedWithIdResponse';
export class SaveRecordResponse extends CreatedWithIdResponse {
public warnings: string[];
constructor(id: number, warnings: string[] = []) {
super(id);
this.warnings = warnings;
}
}