UNPKG

fastcomments-sdk

Version:

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

83 lines 2.47 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'; /** * * @export * @interface GetCommentsForUser200Response */ export interface GetCommentsForUser200Response { /** * * @type {Array<string>} * @memberof GetCommentsForUser200Response */ moderatingTenantIds?: Array<string>; /** * * @type {APIStatus} * @memberof GetCommentsForUser200Response */ status: APIStatus; /** * * @type {string} * @memberof GetCommentsForUser200Response */ reason: string; /** * * @type {string} * @memberof GetCommentsForUser200Response */ code: string; /** * * @type {string} * @memberof GetCommentsForUser200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetCommentsForUser200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetCommentsForUser200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCommentsForUser200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCommentsForUser200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCommentsForUser200Response interface. */ export declare function instanceOfGetCommentsForUser200Response(value: object): value is GetCommentsForUser200Response; export declare function GetCommentsForUser200ResponseFromJSON(json: any): GetCommentsForUser200Response; export declare function GetCommentsForUser200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentsForUser200Response; export declare function GetCommentsForUser200ResponseToJSON(json: any): GetCommentsForUser200Response; export declare function GetCommentsForUser200ResponseToJSONTyped(value?: GetCommentsForUser200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentsForUser200Response.d.ts.map