UNPKG

fastcomments-sdk

Version:

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

84 lines 2.32 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 './CustomConfigParameters'; import type { FeedPost } from './FeedPost'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetFeedPostsResponse1 */ export interface GetFeedPostsResponse1 { /** * * @type {APIStatus} * @memberof GetFeedPostsResponse1 */ status: APIStatus; /** * * @type {Array<FeedPost>} * @memberof GetFeedPostsResponse1 */ feedPosts: Array<FeedPost>; /** * * @type {string} * @memberof GetFeedPostsResponse1 */ reason: string; /** * * @type {string} * @memberof GetFeedPostsResponse1 */ code: string; /** * * @type {string} * @memberof GetFeedPostsResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetFeedPostsResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetFeedPostsResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetFeedPostsResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetFeedPostsResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetFeedPostsResponse1 interface. */ export declare function instanceOfGetFeedPostsResponse1(value: object): value is GetFeedPostsResponse1; export declare function GetFeedPostsResponse1FromJSON(json: any): GetFeedPostsResponse1; export declare function GetFeedPostsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFeedPostsResponse1; export declare function GetFeedPostsResponse1ToJSON(json: any): GetFeedPostsResponse1; export declare function GetFeedPostsResponse1ToJSONTyped(value?: GetFeedPostsResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetFeedPostsResponse1.d.ts.map