UNPKG

@forestvpn/forestvpn_api

Version:

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

68 lines (59 loc) 1.4 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. */ import { Bundle } from './bundle'; import { Discount } from './discount'; import { Recurring } from './recurring'; /** * * * @export * @interface ProductWithoutPrice */ export interface ProductWithoutPrice { /** * @type {string} * @memberof ProductWithoutPrice */ id: string; /** * @type {string} * @memberof ProductWithoutPrice */ name: string; /** * @type {string} * @memberof ProductWithoutPrice */ description?: string; /** * @type {Bundle} * @memberof ProductWithoutPrice */ bundle?: Bundle; /** * @type {Recurring} * @memberof ProductWithoutPrice */ recurring?: Recurring; /** * @type {Discount} * @memberof ProductWithoutPrice */ discount?: Discount; /** * @type {boolean} * @memberof ProductWithoutPrice */ is_most_popular?: boolean; }