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

16 lines
411 B
TypeScript
Raw Normal View History

2023-02-03 16:01:20 -06:00
export class CreatedWithIdResponse {
/**
* @property {number} id - The id of the created object.
*/
public id: number;
/**
* @constructor - Creates a new instance of the CreatedWithIdResponse class.
* @param id - The id of the created object.
* @returns {CreatedWithIdResponse} - A new instance of the CreatedWithIdResponse class.
*/
constructor(id: number) {
this.id = id;
}
}