This commit is contained in:
2025-07-18 12:10:29 +00:00
parent 4ec2e46c4b
commit be09571604
14 changed files with 2628 additions and 281 deletions

View File

@@ -108,6 +108,7 @@ export interface IBunqPaymentRequest {
}>;
merchant_reference?: string;
allow_bunqto?: boolean;
request_reference_split_the_bill?: string;
}
export interface IBunqScheduledPaymentRequest extends IBunqPaymentRequest {
@@ -254,4 +255,30 @@ export interface IBunqRequestInquiry {
address_shipping?: any;
geolocation?: any;
allow_chat?: boolean;
}
export interface IBunqPaymentBatch {
id: number;
created: string;
updated: string;
payments: IBunqPayment[];
status: string;
total_amount: IBunqAmount;
reference?: string;
}
export interface IBunqSchedulePayment {
id: number;
created: string;
updated: string;
status: string;
payment: IBunqPaymentRequest;
schedule: IBunqSchedule;
}
export interface IBunqSchedule {
time_start: string;
time_end: string;
recurrence_unit: 'ONCE' | 'HOURLY' | 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY';
recurrence_size: number;
}