UNPKG

fastcomments-sdk

Version:

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

47 lines 1.46 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 { CommentLogType } from './CommentLogType'; import type { CommentLogData } from './CommentLogData'; /** * * @export * @interface CommentLogEntry */ export interface CommentLogEntry { /** * * @type {Date} * @memberof CommentLogEntry */ d: Date; /** * * @type {CommentLogType} * @memberof CommentLogEntry */ t: CommentLogType; /** * * @type {CommentLogData} * @memberof CommentLogEntry */ da?: CommentLogData; } /** * Check if a given object implements the CommentLogEntry interface. */ export declare function instanceOfCommentLogEntry(value: object): value is CommentLogEntry; export declare function CommentLogEntryFromJSON(json: any): CommentLogEntry; export declare function CommentLogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentLogEntry; export declare function CommentLogEntryToJSON(json: any): CommentLogEntry; export declare function CommentLogEntryToJSONTyped(value?: CommentLogEntry | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentLogEntry.d.ts.map