Files
onspring-api-sdk-javascript/src/models/SaveRecordResponse.ts
T

11 lines
275 B
TypeScript
Raw Normal View History

import { CreatedWithIdResponse } from './CreatedWithIdResponse.js';
2023-02-13 20:21:28 -06:00
export class SaveRecordResponse extends CreatedWithIdResponse<number> {
2023-02-13 20:21:28 -06:00
public warnings: string[];
constructor(id: number, warnings: string[] = []) {
super(id);
this.warnings = warnings;
}
}