@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
33 lines (32 loc) • 1.03 kB
TypeScript
import { DefenseDocumentType } from "./defenseDocumentType";
export declare class DefenseReason {
/**
* Array of defense document types for a specific defense reason. Indicates the document types that you can submit to the schemes to defend this dispute, and whether they are required.
*/
"defenseDocumentTypes"?: Array<DefenseDocumentType>;
/**
* The defense reason code that was selected to defend this dispute.
*/
"defenseReasonCode": string;
/**
* Indicates if sufficient defense material has been supplied.
*/
"satisfied": boolean;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}