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