UNPKG

fastcomments-sdk

Version:

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

78 lines 1.92 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 { CustomConfigParameters } from './custom-config-parameters'; import type { FeedPostStats } from './feed-post-stats'; import type { ImportedAPIStatusFAILED } from './imported-apistatus-failed'; /** * * @export * @interface GetFeedPostsStats200Response */ export interface GetFeedPostsStats200Response { /** * * @type {ImportedAPIStatusFAILED} * @memberof GetFeedPostsStats200Response */ 'status': ImportedAPIStatusFAILED; /** * * @type {{ [key: string]: FeedPostStats; }} * @memberof GetFeedPostsStats200Response */ 'stats': { [key: string]: FeedPostStats; }; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ 'reason': string; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ 'code': string; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ 'secondaryCode'?: string; /** * * @type {number} * @memberof GetFeedPostsStats200Response */ 'bannedUntil'?: number; /** * * @type {number} * @memberof GetFeedPostsStats200Response */ 'maxCharacterLength'?: number; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ 'translatedError'?: string; /** * * @type {CustomConfigParameters} * @memberof GetFeedPostsStats200Response */ 'customConfig'?: CustomConfigParameters; } //# sourceMappingURL=get-feed-posts-stats200-response.d.ts.map