UNPKG

fastcomments-sdk

Version:

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

86 lines 2.54 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 { FeedPostStats } from './FeedPostStats'; import type { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetFeedPostsStats200Response */ export interface GetFeedPostsStats200Response { /** * * @type {APIStatus} * @memberof GetFeedPostsStats200Response */ status: APIStatus; /** * * @type {{ [key: string]: FeedPostStats; }} * @memberof GetFeedPostsStats200Response */ stats: { [key: string]: FeedPostStats; }; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ reason: string; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ code: string; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetFeedPostsStats200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetFeedPostsStats200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetFeedPostsStats200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetFeedPostsStats200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetFeedPostsStats200Response interface. */ export declare function instanceOfGetFeedPostsStats200Response(value: object): value is GetFeedPostsStats200Response; export declare function GetFeedPostsStats200ResponseFromJSON(json: any): GetFeedPostsStats200Response; export declare function GetFeedPostsStats200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFeedPostsStats200Response; export declare function GetFeedPostsStats200ResponseToJSON(json: any): GetFeedPostsStats200Response; export declare function GetFeedPostsStats200ResponseToJSONTyped(value?: GetFeedPostsStats200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetFeedPostsStats200Response.d.ts.map