UNPKG

fastcomments-sdk

Version:

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

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