fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
91 lines • 2.61 kB
TypeScript
/**
* fastcomments
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface HeaderAccountNotification
*/
export interface HeaderAccountNotification {
/**
*
* @type {string}
* @memberof HeaderAccountNotification
*/
id: string;
/**
*
* @type {string}
* @memberof HeaderAccountNotification
*/
title: string;
/**
*
* @type {string}
* @memberof HeaderAccountNotification
*/
message: string;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: string; }}
* @memberof HeaderAccountNotification
*/
messagesByLocale: {
[key: string]: string;
} | null;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: string; }}
* @memberof HeaderAccountNotification
*/
dates: {
[key: string]: string;
} | null;
/**
*
* @type {string}
* @memberof HeaderAccountNotification
*/
severity: string;
/**
*
* @type {string}
* @memberof HeaderAccountNotification
*/
linkUrl: string | null;
/**
*
* @type {string}
* @memberof HeaderAccountNotification
*/
linkText: string | null;
/**
*
* @type {Date}
* @memberof HeaderAccountNotification
*/
createdAt: Date;
/**
* Discriminator for notifications with a special layout/click handler (e.g. "feedback-offer").
* @type {string}
* @memberof HeaderAccountNotification
*/
type?: string | null;
}
/**
* Check if a given object implements the HeaderAccountNotification interface.
*/
export declare function instanceOfHeaderAccountNotification(value: object): value is HeaderAccountNotification;
export declare function HeaderAccountNotificationFromJSON(json: any): HeaderAccountNotification;
export declare function HeaderAccountNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): HeaderAccountNotification;
export declare function HeaderAccountNotificationToJSON(json: any): HeaderAccountNotification;
export declare function HeaderAccountNotificationToJSONTyped(value?: HeaderAccountNotification | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=HeaderAccountNotification.d.ts.map