UNPKG

fastcomments-sdk

Version:

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

85 lines 2.65 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 UnBlockUserFromComment200Response */ export interface UnBlockUserFromComment200Response { /** * * @type {APIStatus} * @memberof UnBlockUserFromComment200Response */ status: APIStatus; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: boolean; }} * @memberof UnBlockUserFromComment200Response */ commentStatuses: { [key: string]: boolean; }; /** * * @type {string} * @memberof UnBlockUserFromComment200Response */ reason: string; /** * * @type {string} * @memberof UnBlockUserFromComment200Response */ code: string; /** * * @type {string} * @memberof UnBlockUserFromComment200Response */ secondaryCode?: string; /** * * @type {number} * @memberof UnBlockUserFromComment200Response */ bannedUntil?: number; /** * * @type {number} * @memberof UnBlockUserFromComment200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof UnBlockUserFromComment200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UnBlockUserFromComment200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UnBlockUserFromComment200Response interface. */ export declare function instanceOfUnBlockUserFromComment200Response(value: object): value is UnBlockUserFromComment200Response; export declare function UnBlockUserFromComment200ResponseFromJSON(json: any): UnBlockUserFromComment200Response; export declare function UnBlockUserFromComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnBlockUserFromComment200Response; export declare function UnBlockUserFromComment200ResponseToJSON(json: any): UnBlockUserFromComment200Response; export declare function UnBlockUserFromComment200ResponseToJSONTyped(value?: UnBlockUserFromComment200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UnBlockUserFromComment200Response.d.ts.map