fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
77 lines • 2.11 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface LockCommentResponse
*/
export interface LockCommentResponse {
/**
*
* @type {APIStatus}
* @memberof LockCommentResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof LockCommentResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof LockCommentResponse
*/
code: string;
/**
*
* @type {string}
* @memberof LockCommentResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof LockCommentResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof LockCommentResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof LockCommentResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof LockCommentResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the LockCommentResponse interface.
*/
export declare function instanceOfLockCommentResponse(value: object): value is LockCommentResponse;
export declare function LockCommentResponseFromJSON(json: any): LockCommentResponse;
export declare function LockCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LockCommentResponse;
export declare function LockCommentResponseToJSON(json: any): LockCommentResponse;
export declare function LockCommentResponseToJSONTyped(value?: LockCommentResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=LockCommentResponse.d.ts.map