@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
33 lines (32 loc) • 866 B
TypeScript
/**
* @export
* @class BillableEncodingFeatureMinutes
*/
export declare class BillableEncodingFeatureMinutes {
/**
* The name of the feature.
* @type {string}
* @memberof BillableEncodingFeatureMinutes
*/
featureType?: string;
/**
* Encoded minutes related to this feature.
* @type {number}
* @memberof BillableEncodingFeatureMinutes
*/
encodedMinutes?: number;
/**
* The multiplier used for this feature.
* @type {number}
* @memberof BillableEncodingFeatureMinutes
*/
featureMultiplier?: number;
/**
* The billable minutes related to this feature.
* @type {number}
* @memberof BillableEncodingFeatureMinutes
*/
billableMinutes?: number;
constructor(obj?: Partial<BillableEncodingFeatureMinutes>);
}
export default BillableEncodingFeatureMinutes;