UNPKG

fastcomments-sdk

Version:

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

89 lines 2.48 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 GetTrustFactor200Response */ export interface GetTrustFactor200Response { /** * * @type {number} * @memberof GetTrustFactor200Response */ manualTrustFactor?: number; /** * * @type {number} * @memberof GetTrustFactor200Response */ autoTrustFactor?: number; /** * * @type {APIStatus} * @memberof GetTrustFactor200Response */ status: APIStatus; /** * * @type {string} * @memberof GetTrustFactor200Response */ reason: string; /** * * @type {string} * @memberof GetTrustFactor200Response */ code: string; /** * * @type {string} * @memberof GetTrustFactor200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTrustFactor200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTrustFactor200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTrustFactor200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTrustFactor200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTrustFactor200Response interface. */ export declare function instanceOfGetTrustFactor200Response(value: object): value is GetTrustFactor200Response; export declare function GetTrustFactor200ResponseFromJSON(json: any): GetTrustFactor200Response; export declare function GetTrustFactor200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTrustFactor200Response; export declare function GetTrustFactor200ResponseToJSON(json: any): GetTrustFactor200Response; export declare function GetTrustFactor200ResponseToJSONTyped(value?: GetTrustFactor200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTrustFactor200Response.d.ts.map