UNPKG

fastcomments-sdk

Version:

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

83 lines 2.37 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 SetTrustFactor200Response */ export interface SetTrustFactor200Response { /** * * @type {number} * @memberof SetTrustFactor200Response */ previousManualTrustFactor?: number; /** * * @type {APIStatus} * @memberof SetTrustFactor200Response */ status: APIStatus; /** * * @type {string} * @memberof SetTrustFactor200Response */ reason: string; /** * * @type {string} * @memberof SetTrustFactor200Response */ code: string; /** * * @type {string} * @memberof SetTrustFactor200Response */ secondaryCode?: string; /** * * @type {number} * @memberof SetTrustFactor200Response */ bannedUntil?: number; /** * * @type {number} * @memberof SetTrustFactor200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof SetTrustFactor200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof SetTrustFactor200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the SetTrustFactor200Response interface. */ export declare function instanceOfSetTrustFactor200Response(value: object): value is SetTrustFactor200Response; export declare function SetTrustFactor200ResponseFromJSON(json: any): SetTrustFactor200Response; export declare function SetTrustFactor200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetTrustFactor200Response; export declare function SetTrustFactor200ResponseToJSON(json: any): SetTrustFactor200Response; export declare function SetTrustFactor200ResponseToJSONTyped(value?: SetTrustFactor200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SetTrustFactor200Response.d.ts.map