UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

46 lines 1.37 kB
/** * 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 { APIStatus } from './APIStatus'; /** * * @export * @interface PreBanSummary */ export interface PreBanSummary { /** * * @type {APIStatus} * @memberof PreBanSummary */ status: APIStatus; /** * * @type {Array<string>} * @memberof PreBanSummary */ usernames: Array<string>; /** * * @type {number} * @memberof PreBanSummary */ count: number; } /** * Check if a given object implements the PreBanSummary interface. */ export declare function instanceOfPreBanSummary(value: object): value is PreBanSummary; export declare function PreBanSummaryFromJSON(json: any): PreBanSummary; export declare function PreBanSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): PreBanSummary; export declare function PreBanSummaryToJSON(json: any): PreBanSummary; export declare function PreBanSummaryToJSONTyped(value?: PreBanSummary | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PreBanSummary.d.ts.map