UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

62 lines 2.17 kB
/** * 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 { PublicComment } from './PublicComment'; import type { APIStatus } from './APIStatus'; import type { UserSessionInfo } from './UserSessionInfo'; /** * * @export * @interface SaveCommentsResponseWithPresence */ export interface SaveCommentsResponseWithPresence { /** * * @type {APIStatus} * @memberof SaveCommentsResponseWithPresence */ status: APIStatus; /** * * @type {PublicComment} * @memberof SaveCommentsResponseWithPresence */ comment: PublicComment; /** * * @type {UserSessionInfo} * @memberof SaveCommentsResponseWithPresence */ user: UserSessionInfo | null; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: object; }} * @memberof SaveCommentsResponseWithPresence */ moduleData?: { [key: string]: object; }; /** * * @type {string} * @memberof SaveCommentsResponseWithPresence */ userIdWS?: string; } /** * Check if a given object implements the SaveCommentsResponseWithPresence interface. */ export declare function instanceOfSaveCommentsResponseWithPresence(value: object): value is SaveCommentsResponseWithPresence; export declare function SaveCommentsResponseWithPresenceFromJSON(json: any): SaveCommentsResponseWithPresence; export declare function SaveCommentsResponseWithPresenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaveCommentsResponseWithPresence; export declare function SaveCommentsResponseWithPresenceToJSON(json: any): SaveCommentsResponseWithPresence; export declare function SaveCommentsResponseWithPresenceToJSONTyped(value?: SaveCommentsResponseWithPresence | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SaveCommentsResponseWithPresence.d.ts.map