/**
 * Revolugo Booking API Reference
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.5.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Review rating with category collected for the Hotel.
 * @export
 * @interface HotelReviewRatingApi
 */
export interface HotelReviewRatingApi {
    /**
     * Category of the collected reviews for the Hotel.
     * @type {string}
     * @memberof HotelReviewRatingApi
     */
    category?: string | null;
    /**
     * Rating of the collected review for the Hotel.
     * @type {number}
     * @memberof HotelReviewRatingApi
     */
    rating: number;
}
/**
 * Check if a given object implements the HotelReviewRatingApi interface.
 */
export declare function instanceOfHotelReviewRatingApi(value: object): boolean;
export declare function HotelReviewRatingApiFromJSON(json: any): HotelReviewRatingApi;
export declare function HotelReviewRatingApiFromJSONTyped(json: any, ignoreDiscriminator: boolean): HotelReviewRatingApi;
export declare function HotelReviewRatingApiToJSON(value?: HotelReviewRatingApi | null): any;
