# give/4.16.9/src/Framework/PaymentGateways/Contracts/Subscription/SubscriptionAmountEditable.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 21 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/PaymentGateways/Contracts/Subscription/SubscriptionAmountEditable.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/PaymentGateways/Contracts/Subscription/SubscriptionAmountEditable.php
- Modified: 2022-06-29T23:03:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/PaymentGateways/Contracts/Subscription/SubscriptionAmountEditable.php#L10-L20`.

```php
<?php

namespace Give\Framework\PaymentGateways\Contracts\Subscription;

use Give\Framework\Support\ValueObjects\Money;
use Give\Subscriptions\Models\Subscription;

/**
 * @since 2.20.0
 */
interface SubscriptionAmountEditable
{
    /**
     * Update subscription amount.
     *
     * @since 2.21.2 Add second argument to specify the new amount.
     * @since 2.20.0
     */
    public function updateSubscriptionAmount(Subscription $subscription, Money $newRenewalAmount);
}

```
