UNPKG

fastcomments-sdk

Version:

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

106 lines 2.74 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 { FComment } from './FComment'; /** * * @export * @interface PendingCommentToSyncOutbound */ export interface PendingCommentToSyncOutbound { /** * * @type {string} * @memberof PendingCommentToSyncOutbound */ id: string; /** * * @type {string} * @memberof PendingCommentToSyncOutbound */ commentId: string; /** * * @type {FComment} * @memberof PendingCommentToSyncOutbound */ comment?: FComment; /** * * @type {string} * @memberof PendingCommentToSyncOutbound */ externalId: string | null; /** * * @type {Date} * @memberof PendingCommentToSyncOutbound */ createdAt: Date; /** * * @type {string} * @memberof PendingCommentToSyncOutbound */ tenantId: string; /** * * @type {number} * @memberof PendingCommentToSyncOutbound */ attemptCount: number; /** * * @type {Date} * @memberof PendingCommentToSyncOutbound */ nextAttemptAt: Date; /** * * @type {number} * @memberof PendingCommentToSyncOutbound */ eventType: number; /** * * @type {number} * @memberof PendingCommentToSyncOutbound */ type: number; /** * * @type {string} * @memberof PendingCommentToSyncOutbound */ domain: string; /** * * @type {object} * @memberof PendingCommentToSyncOutbound */ lastError: object; /** * * @type {string} * @memberof PendingCommentToSyncOutbound */ webhookId?: string; } /** * Check if a given object implements the PendingCommentToSyncOutbound interface. */ export declare function instanceOfPendingCommentToSyncOutbound(value: object): value is PendingCommentToSyncOutbound; export declare function PendingCommentToSyncOutboundFromJSON(json: any): PendingCommentToSyncOutbound; export declare function PendingCommentToSyncOutboundFromJSONTyped(json: any, ignoreDiscriminator: boolean): PendingCommentToSyncOutbound; export declare function PendingCommentToSyncOutboundToJSON(json: any): PendingCommentToSyncOutbound; export declare function PendingCommentToSyncOutboundToJSONTyped(value?: PendingCommentToSyncOutbound | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PendingCommentToSyncOutbound.d.ts.map