UNPKG

fastcomments-sdk

Version:

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

40 lines 1.12 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 { FeedPost } from './feed-post'; import type { ImportedAPIStatusSUCCESS } from './imported-apistatus-success'; import type { UserSessionInfo } from './user-session-info'; /** * * @export * @interface GetPublicFeedPostsResponse */ export interface GetPublicFeedPostsResponse { /** * * @type {ImportedAPIStatusSUCCESS} * @memberof GetPublicFeedPostsResponse */ 'status': ImportedAPIStatusSUCCESS; /** * * @type {Array<FeedPost>} * @memberof GetPublicFeedPostsResponse */ 'feedPosts': Array<FeedPost>; /** * * @type {UserSessionInfo} * @memberof GetPublicFeedPostsResponse */ 'user'?: UserSessionInfo | null; } //# sourceMappingURL=get-public-feed-posts-response.d.ts.map