fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
39 lines • 1.43 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.
*/
/**
*
* @export
* @interface GetBannedUsersCountResponse
*/
export interface GetBannedUsersCountResponse {
/**
*
* @type {number}
* @memberof GetBannedUsersCountResponse
*/
totalCount: number;
/**
*
* @type {string}
* @memberof GetBannedUsersCountResponse
*/
status: string;
}
/**
* Check if a given object implements the GetBannedUsersCountResponse interface.
*/
export declare function instanceOfGetBannedUsersCountResponse(value: object): value is GetBannedUsersCountResponse;
export declare function GetBannedUsersCountResponseFromJSON(json: any): GetBannedUsersCountResponse;
export declare function GetBannedUsersCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetBannedUsersCountResponse;
export declare function GetBannedUsersCountResponseToJSON(json: any): GetBannedUsersCountResponse;
export declare function GetBannedUsersCountResponseToJSONTyped(value?: GetBannedUsersCountResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetBannedUsersCountResponse.d.ts.map