UNPKG

fastcomments-sdk

Version:

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

43 lines 1.87 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 { RecordStringBeforeStringOrNullAfterStringOrNullValue } from './RecordStringBeforeStringOrNullAfterStringOrNullValue'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface ChangeCommentPinStatusResponse */ export interface ChangeCommentPinStatusResponse { /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: RecordStringBeforeStringOrNullAfterStringOrNullValue; }} * @memberof ChangeCommentPinStatusResponse */ commentPositions: { [key: string]: RecordStringBeforeStringOrNullAfterStringOrNullValue; }; /** * * @type {APIStatus} * @memberof ChangeCommentPinStatusResponse */ status: APIStatus; } /** * Check if a given object implements the ChangeCommentPinStatusResponse interface. */ export declare function instanceOfChangeCommentPinStatusResponse(value: object): value is ChangeCommentPinStatusResponse; export declare function ChangeCommentPinStatusResponseFromJSON(json: any): ChangeCommentPinStatusResponse; export declare function ChangeCommentPinStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangeCommentPinStatusResponse; export declare function ChangeCommentPinStatusResponseToJSON(json: any): ChangeCommentPinStatusResponse; export declare function ChangeCommentPinStatusResponseToJSONTyped(value?: ChangeCommentPinStatusResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChangeCommentPinStatusResponse.d.ts.map