UNPKG

fastcomments-sdk

Version:

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

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