@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
51 lines (50 loc) • 1.43 kB
TypeScript
import { RecurringToken } from "./recurringToken";
export declare class TokenizationDisabledDetailsNotificationRequest {
/**
* The date and time when the event happened, in ISO 8601 extended format.
*/
"createdAt": Date;
"data": RecurringToken;
/**
* The environment from which the webhook originated. Possible values: **test**, **live**.
*/
"environment": TokenizationDisabledDetailsNotificationRequest.EnvironmentEnum;
/**
* The PSP reference of the event that triggered the webhook.
*/
"eventId": string;
/**
* The type of webhook.
*/
"type": TokenizationDisabledDetailsNotificationRequest.TypeEnum;
/**
* The version of this entity.
*/
"version"?: string;
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();
}
export declare namespace TokenizationDisabledDetailsNotificationRequest {
enum EnvironmentEnum {
Test = "test",
Live = "live"
}
enum TypeEnum {
RecurringTokenDisabled = "recurring.token.disabled"
}
}