UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

29 lines (28 loc) 837 B
export interface CdnUsageStatisticsGetQueryParams { /** * Start date. Accepted formats: yyyy-MM-ddThh:mm:ssZ or yyyy-MM-dd * @type {Date} * @memberof CdnUsageStatisticsGetQueryParams */ from?: Date | undefined; /** * End date. Accepted formats: yyyy-MM-ddThh:mm:ssZ or yyyy-MM-dd * @type {Date} * @memberof CdnUsageStatisticsGetQueryParams */ to?: Date | undefined; } export declare class CdnUsageStatisticsGetQueryParamsBuilder { private internalParams; /** * * @param from Start date. Accepted formats: yyyy-MM-ddThh:mm:ssZ or yyyy-MM-dd */ from(from: Date): this; /** * * @param to End date. Accepted formats: yyyy-MM-ddThh:mm:ssZ or yyyy-MM-dd */ to(to: Date): this; buildQueryParams(): CdnUsageStatisticsGetQueryParams; }