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

11 lines
264 B
TypeScript
Raw Normal View History

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