UNPKG

fastcomments-sdk

Version:

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

111 lines 2.66 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 { FeedPost } from './feed-post'; import type { ImportedAPIStatusFAILED } from './imported-apistatus-failed'; import type { UserSessionInfo } from './user-session-info'; /** * * @export * @interface GetFeedPostsPublic200Response */ export interface GetFeedPostsPublic200Response { /** * * @type {{ [key: string]: { [key: string]: boolean; }; }} * @memberof GetFeedPostsPublic200Response */ 'myReacts'?: { [key: string]: { [key: string]: boolean; }; }; /** * * @type {ImportedAPIStatusFAILED} * @memberof GetFeedPostsPublic200Response */ 'status': ImportedAPIStatusFAILED; /** * * @type {Array<FeedPost>} * @memberof GetFeedPostsPublic200Response */ 'feedPosts': Array<FeedPost>; /** * * @type {UserSessionInfo} * @memberof GetFeedPostsPublic200Response */ 'user'?: UserSessionInfo | null; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'urlIdWS'?: string; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'userIdWS'?: string; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'tenantIdWS'?: string; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'reason': string; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'code': string; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'secondaryCode'?: string; /** * * @type {number} * @memberof GetFeedPostsPublic200Response */ 'bannedUntil'?: number; /** * * @type {number} * @memberof GetFeedPostsPublic200Response */ 'maxCharacterLength'?: number; /** * * @type {string} * @memberof GetFeedPostsPublic200Response */ 'translatedError'?: string; /** * * @type {CustomConfigParameters} * @memberof GetFeedPostsPublic200Response */ 'customConfig'?: CustomConfigParameters; } //# sourceMappingURL=get-feed-posts-public200-response.d.ts.map