UNPKG

fastcomments-sdk

Version:

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

91 lines 2.72 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 GetSearchSuggestResponse */ export interface GetSearchSuggestResponse { /** * * @type {APIStatus} * @memberof GetSearchSuggestResponse */ status: APIStatus; /** * * @type {Array<ModerationPageSearchProjected>} * @memberof GetSearchSuggestResponse */ pages?: Array<ModerationPageSearchProjected>; /** * * @type {Array<ModerationUserSearchProjected>} * @memberof GetSearchSuggestResponse */ users?: Array<ModerationUserSearchProjected>; /** * * @type {string} * @memberof GetSearchSuggestResponse */ code: string; /** * * @type {string} * @memberof GetSearchSuggestResponse */ reason: string; /** * * @type {string} * @memberof GetSearchSuggestResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchSuggestResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchSuggestResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchSuggestResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchSuggestResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchSuggestResponse interface. */ export declare function instanceOfGetSearchSuggestResponse(value: object): value is GetSearchSuggestResponse; export declare function GetSearchSuggestResponseFromJSON(json: any): GetSearchSuggestResponse; export declare function GetSearchSuggestResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchSuggestResponse; export declare function GetSearchSuggestResponseToJSON(json: any): GetSearchSuggestResponse; export declare function GetSearchSuggestResponseToJSONTyped(value?: GetSearchSuggestResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchSuggestResponse.d.ts.map