@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
47 lines (46 loc) • 1.39 kB
TypeScript
import { Amount } from "./amount";
import { ResourceReference } from "./resourceReference";
export declare class ReleaseBlockedBalanceNotificationData {
"accountHolder": ResourceReference;
"amount": Amount;
"balanceAccount": ResourceReference;
/**
* The unique identifier of the balance platform.
*/
"balancePlatform"?: string;
/**
* The reference of the batch that was released.
*/
"batchReference"?: string;
"blockedBalanceAfter"?: Amount | null;
"blockedBalanceBefore"?: Amount | null;
/**
* The date and time when the event was triggered, in ISO 8601 extended format. For example, **2025-03-19T10:15:30+01:00**.
*/
"creationDate"?: Date;
/**
* The ID of the resource.
*/
"id"?: string;
/**
* The date and time when the amount was released, in ISO 8601 extended format. For example, **2025-03-19T10:15:30+01:00**.
*/
"valueDate"?: Date;
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();
}