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