fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
66 lines • 1.88 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.
*/
import type { HeaderAccountNotification } from './HeaderAccountNotification';
import type { APIStatus } from './APIStatus';
import type { NotificationAndCount } from './NotificationAndCount';
/**
*
* @export
* @interface HeaderState
*/
export interface HeaderState {
/**
*
* @type {APIStatus}
* @memberof HeaderState
*/
status: APIStatus;
/**
*
* @type {object}
* @memberof HeaderState
*/
notificationType: object;
/**
*
* @type {string}
* @memberof HeaderState
*/
userId: string;
/**
*
* @type {string}
* @memberof HeaderState
*/
userIdWS: string;
/**
*
* @type {Array<NotificationAndCount>}
* @memberof HeaderState
*/
notificationCounts: Array<NotificationAndCount>;
/**
*
* @type {Array<HeaderAccountNotification>}
* @memberof HeaderState
*/
accountNotifications: Array<HeaderAccountNotification>;
}
/**
* Check if a given object implements the HeaderState interface.
*/
export declare function instanceOfHeaderState(value: object): value is HeaderState;
export declare function HeaderStateFromJSON(json: any): HeaderState;
export declare function HeaderStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): HeaderState;
export declare function HeaderStateToJSON(json: any): HeaderState;
export declare function HeaderStateToJSONTyped(value?: HeaderState | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=HeaderState.d.ts.map