@forestvpn/forestvpn_api
Version:
A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)
57 lines (51 loc) • 1.21 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 { Country } from './country';
/**
*
*
* @export
* @interface PaymentMethodCard
*/
export interface PaymentMethodCard {
/**
* Card brand
*
* @type {string}
* @memberof PaymentMethodCard
* @example visa
*/
brand: string;
/**
* Last 4 digits of the card
*
* @type {string}
* @memberof PaymentMethodCard
* @example 4432
*/
last4: string;
/**
* @type {Country}
* @memberof PaymentMethodCard
*/
country?: Country;
/**
* Last day of the expiration year and month
*
* @type {string}
* @memberof PaymentMethodCard
* @example Mon Oct 31 04:00:00 GST 2022
*/
expires_at: string;
}