UNPKG

fastcomments-sdk

Version:

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

91 lines 2.8 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 { ModerationPageSearchProjected } from './ModerationPageSearchProjected'; import type { ModerationUserSearchProjected } from './ModerationUserSearchProjected'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetSearchSuggest200Response */ export interface GetSearchSuggest200Response { /** * * @type {APIStatus} * @memberof GetSearchSuggest200Response */ status: APIStatus; /** * * @type {Array<ModerationPageSearchProjected>} * @memberof GetSearchSuggest200Response */ pages?: Array<ModerationPageSearchProjected>; /** * * @type {Array<ModerationUserSearchProjected>} * @memberof GetSearchSuggest200Response */ users?: Array<ModerationUserSearchProjected>; /** * * @type {string} * @memberof GetSearchSuggest200Response */ code: string; /** * * @type {string} * @memberof GetSearchSuggest200Response */ reason: string; /** * * @type {string} * @memberof GetSearchSuggest200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchSuggest200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchSuggest200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchSuggest200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchSuggest200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchSuggest200Response interface. */ export declare function instanceOfGetSearchSuggest200Response(value: object): value is GetSearchSuggest200Response; export declare function GetSearchSuggest200ResponseFromJSON(json: any): GetSearchSuggest200Response; export declare function GetSearchSuggest200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchSuggest200Response; export declare function GetSearchSuggest200ResponseToJSON(json: any): GetSearchSuggest200Response; export declare function GetSearchSuggest200ResponseToJSONTyped(value?: GetSearchSuggest200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchSuggest200Response.d.ts.map