@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
47 lines (46 loc) • 1.65 kB
TypeScript
import { ResourceReference } from "./resourceReference";
export declare class ReportNotificationData {
"accountHolder"?: ResourceReference | null;
"balanceAccount"?: ResourceReference | null;
/**
* The unique identifier of the balance platform.
*/
"balancePlatform"?: string;
/**
* 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 URL at which you can download the report. To download, you must authenticate your GET request with your [API credentials](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/overview).
*/
"downloadUrl": string;
/**
* The filename of the report.
*/
"fileName": string;
/**
* The ID of the resource.
*/
"id"?: string;
/**
* The type of report. Possible values: - `balanceplatform_accounting_interactive_report` - `balanceplatform_accounting_report` - `balanceplatform_balance_report` - `balanceplatform_fee_report` - `balanceplatform_payment_instrument_report` - `balanceplatform_payout_report` - `balanceplatform_statement_report`
*/
"reportType": string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}