diff --git a/src/MercadoPago/Resources/Point/PaymentIntentPayment.php b/src/MercadoPago/Resources/Point/PaymentIntentPayment.php index d48faa69..fc363f39 100644 --- a/src/MercadoPago/Resources/Point/PaymentIntentPayment.php +++ b/src/MercadoPago/Resources/Point/PaymentIntentPayment.php @@ -5,6 +5,9 @@ /** PaymentIntentPayment class. */ class PaymentIntentPayment { + /** Payment ID. */ + public ?int $id; + /** Number of installments for the payment. */ public ?int $installments; diff --git a/src/MercadoPago/Resources/PreApproval.php b/src/MercadoPago/Resources/PreApproval.php index 5fa09e18..b0f606ee 100644 --- a/src/MercadoPago/Resources/PreApproval.php +++ b/src/MercadoPago/Resources/PreApproval.php @@ -17,9 +17,6 @@ class PreApproval extends MPResource /** Payer ID. */ public ?int $payer_id; - /** Payer email. */ - public ?string $payer_email; - /** Return URL. */ public ?string $back_url; diff --git a/src/MercadoPago/Resources/PreApproval/PreApprovalListResult.php b/src/MercadoPago/Resources/PreApproval/PreApprovalListResult.php index 101980c5..e7a09037 100644 --- a/src/MercadoPago/Resources/PreApproval/PreApprovalListResult.php +++ b/src/MercadoPago/Resources/PreApproval/PreApprovalListResult.php @@ -16,9 +16,6 @@ class PreApprovalListResult /** Payer ID. */ public ?int $payer_id; - /** Payer email. */ - public ?string $payer_email; - /** Return URL. */ public ?string $back_url;