UNPKG

fastcomments-sdk

Version:

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

84 lines 2.35 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 GetModeratorsResponse1 */ export interface GetModeratorsResponse1 { /** * * @type {APIStatus} * @memberof GetModeratorsResponse1 */ status: APIStatus; /** * * @type {Array<Moderator>} * @memberof GetModeratorsResponse1 */ moderators: Array<Moderator>; /** * * @type {string} * @memberof GetModeratorsResponse1 */ reason: string; /** * * @type {string} * @memberof GetModeratorsResponse1 */ code: string; /** * * @type {string} * @memberof GetModeratorsResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetModeratorsResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetModeratorsResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetModeratorsResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetModeratorsResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetModeratorsResponse1 interface. */ export declare function instanceOfGetModeratorsResponse1(value: object): value is GetModeratorsResponse1; export declare function GetModeratorsResponse1FromJSON(json: any): GetModeratorsResponse1; export declare function GetModeratorsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModeratorsResponse1; export declare function GetModeratorsResponse1ToJSON(json: any): GetModeratorsResponse1; export declare function GetModeratorsResponse1ToJSONTyped(value?: GetModeratorsResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetModeratorsResponse1.d.ts.map