UNPKG

fastcomments-sdk

Version:

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

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