@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
33 lines (32 loc) • 941 B
TypeScript
/**
* @export
* @class CdnUsage
*/
export declare class CdnUsage {
/**
* UTC timestamp which marks the beginning of the time period for which the usage statistics are retrieved.
* @type {Date}
* @memberof CdnUsage
*/
from?: Date;
/**
* UTC timestamp which marks the end of the time period for which the usage statistics are retrieved. The end date is exclusive. For example, if end is 2019-03-29T13:05:00Z, the cost and usage data are retrieved from the start date up to, but not including, 2019-03-29T13:05:00Z.
* @type {Date}
* @memberof CdnUsage
*/
to?: Date;
/**
* Storage usage in GB per month.
* @type {number}
* @memberof CdnUsage
*/
storageUsage?: number;
/**
* Transfer usage in GB.
* @type {number}
* @memberof CdnUsage
*/
transferUsage?: number;
constructor(obj?: Partial<CdnUsage>);
}
export default CdnUsage;