UNPKG

fastcomments-sdk

Version:

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

84 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { FeedPost } from './FeedPost'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface UpdateFeedPostPublic200Response */ export interface UpdateFeedPostPublic200Response { /** * * @type {APIStatus} * @memberof UpdateFeedPostPublic200Response */ status: APIStatus; /** * * @type {FeedPost} * @memberof UpdateFeedPostPublic200Response */ feedPost: FeedPost; /** * * @type {string} * @memberof UpdateFeedPostPublic200Response */ reason: string; /** * * @type {string} * @memberof UpdateFeedPostPublic200Response */ code: string; /** * * @type {string} * @memberof UpdateFeedPostPublic200Response */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateFeedPostPublic200Response */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateFeedPostPublic200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateFeedPostPublic200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateFeedPostPublic200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateFeedPostPublic200Response interface. */ export declare function instanceOfUpdateFeedPostPublic200Response(value: object): value is UpdateFeedPostPublic200Response; export declare function UpdateFeedPostPublic200ResponseFromJSON(json: any): UpdateFeedPostPublic200Response; export declare function UpdateFeedPostPublic200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFeedPostPublic200Response; export declare function UpdateFeedPostPublic200ResponseToJSON(json: any): UpdateFeedPostPublic200Response; export declare function UpdateFeedPostPublic200ResponseToJSONTyped(value?: UpdateFeedPostPublic200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateFeedPostPublic200Response.d.ts.map