@forestvpn/forestvpn_api
Version:
A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)
69 lines (61 loc) • 1.62 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 { CloudPaymentsSecure3d } from './cloud-payments-secure3d';
import { PaymentMethodCard } from './payment-method-card';
/**
*
*
* @export
* @interface CloudPaymentsPaymentMethod
*/
export interface CloudPaymentsPaymentMethod {
/**
* The ID of the payment method.
*
* @type {string}
* @memberof CloudPaymentsPaymentMethod
*/
payment_method_id?: string;
/**
* The type of the payment method.
*
* @type {string}
* @memberof CloudPaymentsPaymentMethod
*/
type: string;
/**
* @type {PaymentMethodCard}
* @memberof CloudPaymentsPaymentMethod
*/
card?: PaymentMethodCard;
/**
* Whether the card needs authentication.
*
* @type {boolean}
* @memberof CloudPaymentsPaymentMethod
*/
need_authentication: boolean;
/**
* @type {CloudPaymentsSecure3d}
* @memberof CloudPaymentsPaymentMethod
*/
three_ds?: CloudPaymentsSecure3d;
/**
* The creation date of the payment method.
*
* @type {Date}
* @memberof CloudPaymentsPaymentMethod
*/
created_at: Date;
}