UNPKG

fastcomments-sdk

Version:

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

41 lines 1.46 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'; /** * * @export * @interface CreateFeedPostsResponse */ export interface CreateFeedPostsResponse { /** * * @type {APIStatus} * @memberof CreateFeedPostsResponse */ status: APIStatus; /** * * @type {FeedPost} * @memberof CreateFeedPostsResponse */ feedPost: FeedPost; } /** * Check if a given object implements the CreateFeedPostsResponse interface. */ export declare function instanceOfCreateFeedPostsResponse(value: object): value is CreateFeedPostsResponse; export declare function CreateFeedPostsResponseFromJSON(json: any): CreateFeedPostsResponse; export declare function CreateFeedPostsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFeedPostsResponse; export declare function CreateFeedPostsResponseToJSON(json: any): CreateFeedPostsResponse; export declare function CreateFeedPostsResponseToJSONTyped(value?: CreateFeedPostsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateFeedPostsResponse.d.ts.map