UNPKG

fastcomments-sdk

Version:

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

84 lines 2.47 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 UpdateFeedPostPublicResponse */ export interface UpdateFeedPostPublicResponse { /** * * @type {APIStatus} * @memberof UpdateFeedPostPublicResponse */ status: APIStatus; /** * * @type {FeedPost} * @memberof UpdateFeedPostPublicResponse */ feedPost: FeedPost; /** * * @type {string} * @memberof UpdateFeedPostPublicResponse */ reason: string; /** * * @type {string} * @memberof UpdateFeedPostPublicResponse */ code: string; /** * * @type {string} * @memberof UpdateFeedPostPublicResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateFeedPostPublicResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateFeedPostPublicResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateFeedPostPublicResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateFeedPostPublicResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateFeedPostPublicResponse interface. */ export declare function instanceOfUpdateFeedPostPublicResponse(value: object): value is UpdateFeedPostPublicResponse; export declare function UpdateFeedPostPublicResponseFromJSON(json: any): UpdateFeedPostPublicResponse; export declare function UpdateFeedPostPublicResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFeedPostPublicResponse; export declare function UpdateFeedPostPublicResponseToJSON(json: any): UpdateFeedPostPublicResponse; export declare function UpdateFeedPostPublicResponseToJSONTyped(value?: UpdateFeedPostPublicResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateFeedPostPublicResponse.d.ts.map