fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
86 lines • 2.57 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 { RecordStringBeforeStringOrNullAfterStringOrNullValue } from './RecordStringBeforeStringOrNullAfterStringOrNullValue';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface UnPinCommentResponse
*/
export interface UnPinCommentResponse {
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: RecordStringBeforeStringOrNullAfterStringOrNullValue; }}
* @memberof UnPinCommentResponse
*/
commentPositions: {
[key: string]: RecordStringBeforeStringOrNullAfterStringOrNullValue;
};
/**
*
* @type {APIStatus}
* @memberof UnPinCommentResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof UnPinCommentResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof UnPinCommentResponse
*/
code: string;
/**
*
* @type {string}
* @memberof UnPinCommentResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof UnPinCommentResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof UnPinCommentResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof UnPinCommentResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof UnPinCommentResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the UnPinCommentResponse interface.
*/
export declare function instanceOfUnPinCommentResponse(value: object): value is UnPinCommentResponse;
export declare function UnPinCommentResponseFromJSON(json: any): UnPinCommentResponse;
export declare function UnPinCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnPinCommentResponse;
export declare function UnPinCommentResponseToJSON(json: any): UnPinCommentResponse;
export declare function UnPinCommentResponseToJSONTyped(value?: UnPinCommentResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UnPinCommentResponse.d.ts.map