UNPKG

fastcomments-sdk

Version:

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

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