fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.4 kB
TypeScript
/**
* 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 CreateFeedPost200Response
*/
export interface CreateFeedPost200Response {
/**
*
* @type {APIStatus}
* @memberof CreateFeedPost200Response
*/
status: APIStatus;
/**
*
* @type {FeedPost}
* @memberof CreateFeedPost200Response
*/
feedPost: FeedPost;
/**
*
* @type {string}
* @memberof CreateFeedPost200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof CreateFeedPost200Response
*/
code: string;
/**
*
* @type {string}
* @memberof CreateFeedPost200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof CreateFeedPost200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof CreateFeedPost200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof CreateFeedPost200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof CreateFeedPost200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the CreateFeedPost200Response interface.
*/
export declare function instanceOfCreateFeedPost200Response(value: object): value is CreateFeedPost200Response;
export declare function CreateFeedPost200ResponseFromJSON(json: any): CreateFeedPost200Response;
export declare function CreateFeedPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFeedPost200Response;
export declare function CreateFeedPost200ResponseToJSON(json: any): CreateFeedPost200Response;
export declare function CreateFeedPost200ResponseToJSONTyped(value?: CreateFeedPost200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateFeedPost200Response.d.ts.map