UNPKG

@forestvpn/forestvpn_api

Version:

A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)

79 lines (70 loc) 1.91 kB
/* tslint:disable */ /* eslint-disable */ /** * ForestVPN API * ForestVPN - Fast, secure, and modern VPN. It offers Distributed Computing, Crypto Mining, P2P, Ad Blocking, TOR over VPN, 30+ locations, and a free version with unlimited data. * * OpenAPI spec version: 2.0 * Contact: support@forestvpn.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * * @export * @interface AggregatedFunctionStats */ export interface AggregatedFunctionStats { /** * Aggregation value. It might de a hour, day, week, or month * * @type {string} * @memberof AggregatedFunctionStats */ aggr_interval?: string; /** * Function id, useful for retrieve extra data through device API * * @type {string} * @memberof AggregatedFunctionStats */ function_id?: string; /** * Function name, useful for showing in the chart * * @type {string} * @memberof AggregatedFunctionStats */ function_name?: string; /** * Sum of the resources used aggregated around the device and aggr_interval * * @type {number} * @memberof AggregatedFunctionStats */ resources_used?: number; /** * Sum of the completed functions aggregated around the device and aggr_interval * * @type {number} * @memberof AggregatedFunctionStats */ total_completed?: number; /** * Sum of the received bytes aggregated around the device and aggr_interval * * @type {number} * @memberof AggregatedFunctionStats */ data_used?: number; /** * Sum of the transmitted bytes aggregated around the device and aggr_interval * * @type {number} * @memberof AggregatedFunctionStats */ storage_used?: number; }