import LiveOptionsType from './LiveOptionsType'; /** * @export * @class LiveEncodingOptionsStatistics */ export declare class LiveEncodingOptionsStatistics { /** * The ID of the encoding (required) * @type {string} * @memberof LiveEncodingOptionsStatistics */ encodingId?: string; /** * Live option units used (required) * @type {number} * @memberof LiveEncodingOptionsStatistics */ unitsUsed?: number; /** * @type {LiveOptionsType} * @memberof LiveEncodingOptionsStatistics */ type?: LiveOptionsType; constructor(obj?: Partial); } export default LiveEncodingOptionsStatistics;