UNPKG

fastcomments-sdk

Version:

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

84 lines 2.42 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 { APIStatus } from './APIStatus'; import type { ModerationSiteSearchProjected } from './ModerationSiteSearchProjected'; /** * * @export * @interface GetSearchSitesResponse */ export interface GetSearchSitesResponse { /** * * @type {Array<ModerationSiteSearchProjected>} * @memberof GetSearchSitesResponse */ sites: Array<ModerationSiteSearchProjected>; /** * * @type {APIStatus} * @memberof GetSearchSitesResponse */ status: APIStatus; /** * * @type {string} * @memberof GetSearchSitesResponse */ reason: string; /** * * @type {string} * @memberof GetSearchSitesResponse */ code: string; /** * * @type {string} * @memberof GetSearchSitesResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchSitesResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchSitesResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchSitesResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchSitesResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchSitesResponse interface. */ export declare function instanceOfGetSearchSitesResponse(value: object): value is GetSearchSitesResponse; export declare function GetSearchSitesResponseFromJSON(json: any): GetSearchSitesResponse; export declare function GetSearchSitesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchSitesResponse; export declare function GetSearchSitesResponseToJSON(json: any): GetSearchSitesResponse; export declare function GetSearchSitesResponseToJSONTyped(value?: GetSearchSitesResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchSitesResponse.d.ts.map