UNPKG

fastcomments-sdk

Version:

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

86 lines 2.53 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 { RecordStringBeforeStringOrNullAfterStringOrNullValue } from './RecordStringBeforeStringOrNullAfterStringOrNullValue'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PinCommentResponse */ export interface PinCommentResponse { /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: RecordStringBeforeStringOrNullAfterStringOrNullValue; }} * @memberof PinCommentResponse */ commentPositions: { [key: string]: RecordStringBeforeStringOrNullAfterStringOrNullValue; }; /** * * @type {APIStatus} * @memberof PinCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof PinCommentResponse */ reason: string; /** * * @type {string} * @memberof PinCommentResponse */ code: string; /** * * @type {string} * @memberof PinCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PinCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PinCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PinCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PinCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PinCommentResponse interface. */ export declare function instanceOfPinCommentResponse(value: object): value is PinCommentResponse; export declare function PinCommentResponseFromJSON(json: any): PinCommentResponse; export declare function PinCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PinCommentResponse; export declare function PinCommentResponseToJSON(json: any): PinCommentResponse; export declare function PinCommentResponseToJSONTyped(value?: PinCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PinCommentResponse.d.ts.map