fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
61 lines • 2.05 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 { RenderableUserNotification } from './RenderableUserNotification';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetMyNotificationsResponse
*/
export interface GetMyNotificationsResponse {
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: string; }}
* @memberof GetMyNotificationsResponse
*/
translations?: {
[key: string]: string;
};
/**
*
* @type {boolean}
* @memberof GetMyNotificationsResponse
*/
isSubscribed: boolean;
/**
*
* @type {boolean}
* @memberof GetMyNotificationsResponse
*/
hasMore: boolean;
/**
*
* @type {Array<RenderableUserNotification>}
* @memberof GetMyNotificationsResponse
*/
notifications: Array<RenderableUserNotification>;
/**
*
* @type {APIStatus}
* @memberof GetMyNotificationsResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the GetMyNotificationsResponse interface.
*/
export declare function instanceOfGetMyNotificationsResponse(value: object): value is GetMyNotificationsResponse;
export declare function GetMyNotificationsResponseFromJSON(json: any): GetMyNotificationsResponse;
export declare function GetMyNotificationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMyNotificationsResponse;
export declare function GetMyNotificationsResponseToJSON(json: any): GetMyNotificationsResponse;
export declare function GetMyNotificationsResponseToJSONTyped(value?: GetMyNotificationsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetMyNotificationsResponse.d.ts.map