/**
 * Meeting BaaS API
 * Meeting BaaS API
 *
 * The version of the OpenAPI document: 1.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { TokenConsumptionByService } from './token-consumption-by-service';
/**
 *
 * @export
 * @interface DailyTokenConsumption
 */
export interface DailyTokenConsumption {
    /**
     *
     * @type {TokenConsumptionByService}
     * @memberof DailyTokenConsumption
     */
    'consumptionByService': TokenConsumptionByService;
    /**
     *
     * @type {string}
     * @memberof DailyTokenConsumption
     */
    'date': string;
}
