update
This commit is contained in:
@@ -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;
|
||||
}
|
Reference in New Issue
Block a user