UNPKG

fastcomments-sdk

Version:

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

84 lines 2.49 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { ModerationUserSearchProjected } from './ModerationUserSearchProjected'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetSearchUsers200Response */ export interface GetSearchUsers200Response { /** * * @type {Array<ModerationUserSearchProjected>} * @memberof GetSearchUsers200Response */ users: Array<ModerationUserSearchProjected>; /** * * @type {APIStatus} * @memberof GetSearchUsers200Response */ status: APIStatus; /** * * @type {string} * @memberof GetSearchUsers200Response */ reason: string; /** * * @type {string} * @memberof GetSearchUsers200Response */ code: string; /** * * @type {string} * @memberof GetSearchUsers200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchUsers200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchUsers200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchUsers200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchUsers200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchUsers200Response interface. */ export declare function instanceOfGetSearchUsers200Response(value: object): value is GetSearchUsers200Response; export declare function GetSearchUsers200ResponseFromJSON(json: any): GetSearchUsers200Response; export declare function GetSearchUsers200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchUsers200Response; export declare function GetSearchUsers200ResponseToJSON(json: any): GetSearchUsers200Response; export declare function GetSearchUsers200ResponseToJSONTyped(value?: GetSearchUsers200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchUsers200Response.d.ts.map