UNPKG

fastcomments-sdk

Version:

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

77 lines 2.24 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 { APIStatus } from './APIStatus'; /** * * @export * @interface UpdateFeedPost200Response */ export interface UpdateFeedPost200Response { /** * * @type {APIStatus} * @memberof UpdateFeedPost200Response */ status: APIStatus; /** * * @type {string} * @memberof UpdateFeedPost200Response */ reason: string; /** * * @type {string} * @memberof UpdateFeedPost200Response */ code: string; /** * * @type {string} * @memberof UpdateFeedPost200Response */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateFeedPost200Response */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateFeedPost200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateFeedPost200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateFeedPost200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateFeedPost200Response interface. */ export declare function instanceOfUpdateFeedPost200Response(value: object): value is UpdateFeedPost200Response; export declare function UpdateFeedPost200ResponseFromJSON(json: any): UpdateFeedPost200Response; export declare function UpdateFeedPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFeedPost200Response; export declare function UpdateFeedPost200ResponseToJSON(json: any): UpdateFeedPost200Response; export declare function UpdateFeedPost200ResponseToJSONTyped(value?: UpdateFeedPost200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateFeedPost200Response.d.ts.map