UNPKG

fastcomments-sdk

Version:

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

84 lines 2.93 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 { APIStatus } from './APIStatus'; import type { FindCommentsByRangeResponse } from './FindCommentsByRangeResponse'; /** * * @export * @interface CombineCommentsWithQuestionResults200Response */ export interface CombineCommentsWithQuestionResults200Response { /** * * @type {APIStatus} * @memberof CombineCommentsWithQuestionResults200Response */ status: APIStatus; /** * * @type {FindCommentsByRangeResponse} * @memberof CombineCommentsWithQuestionResults200Response */ data: FindCommentsByRangeResponse; /** * * @type {string} * @memberof CombineCommentsWithQuestionResults200Response */ reason: string; /** * * @type {string} * @memberof CombineCommentsWithQuestionResults200Response */ code: string; /** * * @type {string} * @memberof CombineCommentsWithQuestionResults200Response */ secondaryCode?: string; /** * * @type {number} * @memberof CombineCommentsWithQuestionResults200Response */ bannedUntil?: number; /** * * @type {number} * @memberof CombineCommentsWithQuestionResults200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof CombineCommentsWithQuestionResults200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CombineCommentsWithQuestionResults200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CombineCommentsWithQuestionResults200Response interface. */ export declare function instanceOfCombineCommentsWithQuestionResults200Response(value: object): value is CombineCommentsWithQuestionResults200Response; export declare function CombineCommentsWithQuestionResults200ResponseFromJSON(json: any): CombineCommentsWithQuestionResults200Response; export declare function CombineCommentsWithQuestionResults200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CombineCommentsWithQuestionResults200Response; export declare function CombineCommentsWithQuestionResults200ResponseToJSON(json: any): CombineCommentsWithQuestionResults200Response; export declare function CombineCommentsWithQuestionResults200ResponseToJSONTyped(value?: CombineCommentsWithQuestionResults200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CombineCommentsWithQuestionResults200Response.d.ts.map