UNPKG

fastcomments-sdk

Version:

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

84 lines 2.4 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 { Moderator } from './Moderator'; import type { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetModerators200Response */ export interface GetModerators200Response { /** * * @type {APIStatus} * @memberof GetModerators200Response */ status: APIStatus; /** * * @type {Array<Moderator>} * @memberof GetModerators200Response */ moderators: Array<Moderator>; /** * * @type {string} * @memberof GetModerators200Response */ reason: string; /** * * @type {string} * @memberof GetModerators200Response */ code: string; /** * * @type {string} * @memberof GetModerators200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetModerators200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetModerators200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetModerators200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetModerators200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetModerators200Response interface. */ export declare function instanceOfGetModerators200Response(value: object): value is GetModerators200Response; export declare function GetModerators200ResponseFromJSON(json: any): GetModerators200Response; export declare function GetModerators200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModerators200Response; export declare function GetModerators200ResponseToJSON(json: any): GetModerators200Response; export declare function GetModerators200ResponseToJSONTyped(value?: GetModerators200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetModerators200Response.d.ts.map