/** * @class CreatedWithIdResponse - Represents a response to a request to create a resource. */ export declare class CreatedWithIdResponse { /** * @property {T} id - The id of the created object. */ id: T; /** * @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: T); }