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