fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
34 lines • 1.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 { APIBanUserChangeLog } from './APIBanUserChangeLog';
/**
*
* @export
* @interface BanUserUndoParams
*/
export interface BanUserUndoParams {
/**
*
* @type {APIBanUserChangeLog}
* @memberof BanUserUndoParams
*/
changelog: APIBanUserChangeLog;
}
/**
* Check if a given object implements the BanUserUndoParams interface.
*/
export declare function instanceOfBanUserUndoParams(value: object): value is BanUserUndoParams;
export declare function BanUserUndoParamsFromJSON(json: any): BanUserUndoParams;
export declare function BanUserUndoParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BanUserUndoParams;
export declare function BanUserUndoParamsToJSON(json: any): BanUserUndoParams;
export declare function BanUserUndoParamsToJSONTyped(value?: BanUserUndoParams | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=BanUserUndoParams.d.ts.map