/** * @export * @class AnalyticsQueryTimeframe */ export declare class AnalyticsQueryTimeframe { /** * Start of timeframe which is queried in UTC format. * @type {Date} * @memberof AnalyticsQueryTimeframe */ start?: Date; /** * End of timeframe which is queried in UTC format. * @type {Date} * @memberof AnalyticsQueryTimeframe */ end?: Date; constructor(obj?: Partial); } export default AnalyticsQueryTimeframe;