@forestvpn/forestvpn_api
Version:
A package to interact api.forestvpn.com (manage vpn profiles, check usage statistics, manage locations, ...)
68 lines (67 loc) • 1.4 kB
TypeScript
/**
* ForestVPN API
* ForestVPN defeats content restrictions and censorship to deliver unlimited access to video, music, social media, and more, from anywhere in the world.
*
* 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 { FeaturedImage } from './featured-image';
/**
*
* @export
* @interface NotificationDetail
*/
export interface NotificationDetail {
/**
*
* @type {number}
* @memberof NotificationDetail
*/
id: number;
/**
*
* @type {Date}
* @memberof NotificationDetail
*/
created_at: Date;
/**
*
* @type {string}
* @memberof NotificationDetail
*/
title: string;
/**
*
* @type {string}
* @memberof NotificationDetail
*/
summary: string;
/**
*
* @type {FeaturedImage}
* @memberof NotificationDetail
*/
featured_image: FeaturedImage;
/**
*
* @type {string}
* @memberof NotificationDetail
*/
content: string;
/**
*
* @type {boolean}
* @memberof NotificationDetail
*/
is_unread: boolean;
/**
*
* @type {boolean}
* @memberof NotificationDetail
*/
is_featured: boolean;
}