fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.43 kB
TypeScript
/**
* 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 GetFeedPostsResponse
*/
export interface GetFeedPostsResponse {
/**
*
* @type {APIStatus}
* @memberof GetFeedPostsResponse
*/
status: APIStatus;
/**
*
* @type {Array<FeedPost>}
* @memberof GetFeedPostsResponse
*/
feedPosts: Array<FeedPost>;
}
/**
* Check if a given object implements the GetFeedPostsResponse interface.
*/
export declare function instanceOfGetFeedPostsResponse(value: object): value is GetFeedPostsResponse;
export declare function GetFeedPostsResponseFromJSON(json: any): GetFeedPostsResponse;
export declare function GetFeedPostsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFeedPostsResponse;
export declare function GetFeedPostsResponseToJSON(json: any): GetFeedPostsResponse;
export declare function GetFeedPostsResponseToJSONTyped(value?: GetFeedPostsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetFeedPostsResponse.d.ts.map