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