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 { ModerationPageSearchProjected } from './ModerationPageSearchProjected'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetSearchPages200Response */ export interface GetSearchPages200Response { /** * * @type {Array<ModerationPageSearchProjected>} * @memberof GetSearchPages200Response */ pages: Array<ModerationPageSearchProjected>; /** * * @type {APIStatus} * @memberof GetSearchPages200Response */ status: APIStatus; /** * * @type {string} * @memberof GetSearchPages200Response */ reason: string; /** * * @type {string} * @memberof GetSearchPages200Response */ code: string; /** * * @type {string} * @memberof GetSearchPages200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchPages200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchPages200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchPages200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchPages200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchPages200Response interface. */ export declare function instanceOfGetSearchPages200Response(value: object): value is GetSearchPages200Response; export declare function GetSearchPages200ResponseFromJSON(json: any): GetSearchPages200Response; export declare function GetSearchPages200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchPages200Response; export declare function GetSearchPages200ResponseToJSON(json: any): GetSearchPages200Response; export declare function GetSearchPages200ResponseToJSONTyped(value?: GetSearchPages200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchPages200Response.d.ts.map