@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
31 lines (30 loc) • 936 B
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Results of risk evaluation. Only present if the payment is denied by Circle\'s risk service.
* @export
* @interface RiskEvaluation
*/
export interface RiskEvaluation {
/**
* Enumerated decision of the account.
* @type {string}
* @memberof RiskEvaluation
*/
decision?: RiskEvaluationDecisionEnum;
/**
* Risk reason for the definitive decision outcome.
* @type {string}
* @memberof RiskEvaluation
*/
reason?: string | null;
}
export declare const RiskEvaluationDecisionEnum: {
readonly Approved: "approved";
readonly Denied: "denied";
readonly Review: "review";
};
export declare type RiskEvaluationDecisionEnum = typeof RiskEvaluationDecisionEnum[keyof typeof RiskEvaluationDecisionEnum];