UNPKG

fastcomments-sdk

Version:

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

55 lines 2.05 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 { APIBannedUserWithMultiMatchInfo } from './APIBannedUserWithMultiMatchInfo'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetBannedUsersFromCommentResponse */ export interface GetBannedUsersFromCommentResponse { /** * * @type {Array<APIBannedUserWithMultiMatchInfo>} * @memberof GetBannedUsersFromCommentResponse */ bannedUsers: Array<APIBannedUserWithMultiMatchInfo>; /** * * @type {string} * @memberof GetBannedUsersFromCommentResponse */ code?: GetBannedUsersFromCommentResponseCodeEnum; /** * * @type {APIStatus} * @memberof GetBannedUsersFromCommentResponse */ status: APIStatus; } /** * @export * @enum {string} */ export declare enum GetBannedUsersFromCommentResponseCodeEnum { not_found = "not-found", not_logged_in = "not-logged-in" } /** * Check if a given object implements the GetBannedUsersFromCommentResponse interface. */ export declare function instanceOfGetBannedUsersFromCommentResponse(value: object): value is GetBannedUsersFromCommentResponse; export declare function GetBannedUsersFromCommentResponseFromJSON(json: any): GetBannedUsersFromCommentResponse; export declare function GetBannedUsersFromCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetBannedUsersFromCommentResponse; export declare function GetBannedUsersFromCommentResponseToJSON(json: any): GetBannedUsersFromCommentResponse; export declare function GetBannedUsersFromCommentResponseToJSONTyped(value?: GetBannedUsersFromCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetBannedUsersFromCommentResponse.d.ts.map