@forestvpn/forestvpn_api
Version:
A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)
58 lines (51 loc) • 1.22 kB
text/typescript
/* 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.
*/
import { BillingBundleFeature } from './billing-bundle-feature';
import { Product } from './product';
/**
*
*
* @export
* @interface Bundle
*/
export interface Bundle {
/**
* @type {string}
* @memberof Bundle
*/
id: string;
/**
* @type {string}
* @memberof Bundle
*/
name: string;
/**
* Trial period duration in ISO 8601 format.
*
* @type {string}
* @memberof Bundle
* @example P7D
*/
trial_period?: string;
/**
* @type {Array<Product>}
* @memberof Bundle
*/
products?: Array<Product>;
/**
* @type {Array<BillingBundleFeature>}
* @memberof Bundle
*/
features?: Array<BillingBundleFeature>;
}