/** * @class * Initializes a new instance of the LiveResponse class. * @constructor * Properties of the response. * * @member {string} statusCode The Response status code. * * @member {object} headers Headers of the response. * * @member {object} [body] Body of the response. * * @member {string} [encoding] The encoding of the response body when the body * is a buffer. * */ export declare class LiveResponse { /** * Defines the metadata of LiveResponse * * @returns {object} metadata of LiveResponse * */ mapper(): { required: boolean; serializedName: string; type: { name: string; className: string; modelProperties: { statusCode: { required: boolean; serializedName: string; type: { name: string; }; }; headers: { required: boolean; serializedName: string; type: { name: string; value: { required: boolean; serializedName: string; type: { name: string; }; }; }; }; body: { required: boolean; serializedName: string; type: { name: string; }; }; encoding: { required: boolean; serializedName: string; type: { name: string; }; }; }; }; }; } //# sourceMappingURL=liveResponse.d.ts.map