UNPKG

fastcomments-sdk

Version:

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

48 lines 1.72 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 './FeedPost'; import type { APIStatus } from './APIStatus'; import type { UserSessionInfo } from './UserSessionInfo'; /** * * @export * @interface GetPublicFeedPostsResponse */ export interface GetPublicFeedPostsResponse { /** * * @type {APIStatus} * @memberof GetPublicFeedPostsResponse */ status: APIStatus; /** * * @type {Array<FeedPost>} * @memberof GetPublicFeedPostsResponse */ feedPosts: Array<FeedPost>; /** * * @type {UserSessionInfo} * @memberof GetPublicFeedPostsResponse */ user?: UserSessionInfo | null; } /** * Check if a given object implements the GetPublicFeedPostsResponse interface. */ export declare function instanceOfGetPublicFeedPostsResponse(value: object): value is GetPublicFeedPostsResponse; export declare function GetPublicFeedPostsResponseFromJSON(json: any): GetPublicFeedPostsResponse; export declare function GetPublicFeedPostsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPublicFeedPostsResponse; export declare function GetPublicFeedPostsResponseToJSON(json: any): GetPublicFeedPostsResponse; export declare function GetPublicFeedPostsResponseToJSONTyped(value?: GetPublicFeedPostsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPublicFeedPostsResponse.d.ts.map