fix: Add created at and updated at dates to payment session (#11774)

This commit is contained in:
Stevche Radevski
2025-03-07 20:58:37 +01:00
committed by GitHub
parent c3ec1b2ef7
commit 4b3869ef2c

View File

@@ -552,6 +552,16 @@ export interface PaymentSessionDTO {
*/
authorized_at?: Date
/**
* When the payment session was created
*/
created_at: Date | string
/**
* When the payment session was updated
*/
updated_at: Date | string
/**
* The ID of the associated payment collection.
*/