feat: added saveRecord method
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user