UNPKG

fastcomments-sdk

Version:

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

97 lines 2.77 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 { ModerationAPIComment } from './ModerationAPIComment'; import type { APIStatus } from './APIStatus'; import type { ModerationFilter } from './ModerationFilter'; /** * * @export * @interface GetApiComments200Response */ export interface GetApiComments200Response { /** * * @type {APIStatus} * @memberof GetApiComments200Response */ status: APIStatus; /** * * @type {object} * @memberof GetApiComments200Response */ translations: object; /** * * @type {Array<ModerationAPIComment>} * @memberof GetApiComments200Response */ comments: Array<ModerationAPIComment>; /** * * @type {ModerationFilter} * @memberof GetApiComments200Response */ moderationFilter?: ModerationFilter; /** * * @type {string} * @memberof GetApiComments200Response */ reason: string; /** * * @type {string} * @memberof GetApiComments200Response */ code: string; /** * * @type {string} * @memberof GetApiComments200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetApiComments200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetApiComments200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetApiComments200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetApiComments200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetApiComments200Response interface. */ export declare function instanceOfGetApiComments200Response(value: object): value is GetApiComments200Response; export declare function GetApiComments200ResponseFromJSON(json: any): GetApiComments200Response; export declare function GetApiComments200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApiComments200Response; export declare function GetApiComments200ResponseToJSON(json: any): GetApiComments200Response; export declare function GetApiComments200ResponseToJSONTyped(value?: GetApiComments200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetApiComments200Response.d.ts.map