fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
46 lines • 1.59 kB
TypeScript
/**
* 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetUserTrustFactorResponse
*/
export interface GetUserTrustFactorResponse {
/**
*
* @type {number}
* @memberof GetUserTrustFactorResponse
*/
manualTrustFactor?: number;
/**
*
* @type {number}
* @memberof GetUserTrustFactorResponse
*/
autoTrustFactor?: number;
/**
*
* @type {APIStatus}
* @memberof GetUserTrustFactorResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the GetUserTrustFactorResponse interface.
*/
export declare function instanceOfGetUserTrustFactorResponse(value: object): value is GetUserTrustFactorResponse;
export declare function GetUserTrustFactorResponseFromJSON(json: any): GetUserTrustFactorResponse;
export declare function GetUserTrustFactorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserTrustFactorResponse;
export declare function GetUserTrustFactorResponseToJSON(json: any): GetUserTrustFactorResponse;
export declare function GetUserTrustFactorResponseToJSONTyped(value?: GetUserTrustFactorResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUserTrustFactorResponse.d.ts.map