/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
vendor
/
stripe
/
stripe-php
/
lib
/
/home/techb158/ileadtechnology.com/SSM/vendor/stripe/stripe-php/lib
mkdir
upload
Name
Size
Mode
Actions
ApiOperations/
-
0755
rm
BillingPortal/
-
0755
rm
Checkout/
-
0755
rm
Exception/
-
0755
rm
HttpClient/
-
0755
rm
Issuing/
-
0755
rm
Radar/
-
0755
rm
Reporting/
-
0755
rm
Sigma/
-
0755
rm
Terminal/
-
0755
rm
Util/
-
0755
rm
Account.php
16166
0644
edit
dl
rm
AccountLink.php
789
0644
edit
dl
rm
AlipayAccount.php
2386
0644
edit
dl
rm
ApiRequestor.php
14711
0644
edit
dl
rm
ApiResource.php
3448
0644
edit
dl
rm
ApiResponse.php
712
0644
edit
dl
rm
ApplePayDomain.php
975
0644
edit
dl
rm
ApplicationFee.php
4162
0644
edit
dl
rm
ApplicationFeeRefund.php
2406
0644
edit
dl
rm
Balance.php
2173
0644
edit
dl
rm
BalanceTransaction.php
5375
0644
edit
dl
rm
BankAccount.php
6797
0644
edit
dl
rm
BitcoinReceiver.php
4138
0644
edit
dl
rm
BitcoinTransaction.php
844
0644
edit
dl
rm
Capability.php
2898
0644
edit
dl
rm
Card.php
7813
0644
edit
dl
rm
Charge.php
12222
0644
edit
dl
rm
Collection.php
7165
0644
edit
dl
rm
CountrySpec.php
1743
0644
edit
dl
rm
Coupon.php
2841
0644
edit
dl
rm
CreditNote.php
5595
0644
edit
dl
rm
CreditNoteLineItem.php
1770
0644
edit
dl
rm
Customer.php
12581
0644
edit
dl
rm
CustomerBalanceTransaction.php
5244
0644
edit
dl
rm
Discount.php
298
0644
edit
dl
rm
Dispute.php
5103
0644
edit
dl
rm
EphemeralKey.php
1545
0644
edit
dl
rm
ErrorObject.php
8661
0644
edit
dl
rm
Event.php
11700
0644
edit
dl
rm
ExchangeRate.php
1405
0644
edit
dl
rm
File.php
3115
0644
edit
dl
rm
FileLink.php
1394
0644
edit
dl
rm
Invoice.php
18452
0644
edit
dl
rm
InvoiceItem.php
3556
0644
edit
dl
rm
InvoiceLineItem.php
2593
0644
edit
dl
rm
LoginLink.php
385
0644
edit
dl
rm
Mandate.php
1063
0644
edit
dl
rm
OAuth.php
3393
0644
edit
dl
rm
OAuthErrorObject.php
861
0644
edit
dl
rm
Order.php
5127
0644
edit
dl
rm
OrderItem.php
333
0644
edit
dl
rm
OrderReturn.php
1648
0644
edit
dl
rm
PaymentIntent.php
10945
0644
edit
dl
rm
PaymentMethod.php
3082
0644
edit
dl
rm
Payout.php
5949
0644
edit
dl
rm
Person.php
4489
0644
edit
dl
rm
Plan.php
4883
0644
edit
dl
rm
Product.php
3976
0644
edit
dl
rm
Recipient.php
2841
0644
edit
dl
rm
RecipientTransfer.php
918
0644
edit
dl
rm
Refund.php
4042
0644
edit
dl
rm
RequestTelemetry.php
539
0644
edit
dl
rm
Review.php
3330
0644
edit
dl
rm
SetupIntent.php
6992
0644
edit
dl
rm
SingletonApiResource.php
917
0644
edit
dl
rm
SKU.php
2793
0644
edit
dl
rm
Source.php
8477
0644
edit
dl
rm
SourceTransaction.php
408
0644
edit
dl
rm
Stripe.php
7224
0644
edit
dl
rm
StripeObject.php
18869
0644
edit
dl
rm
Subscription.php
10559
0644
edit
dl
rm
SubscriptionItem.php
3997
0644
edit
dl
rm
SubscriptionSchedule.php
3749
0644
edit
dl
rm
TaxId.php
3895
0644
edit
dl
rm
TaxRate.php
1818
0644
edit
dl
rm
ThreeDSecure.php
2565
0644
edit
dl
rm
Token.php
3590
0644
edit
dl
rm
Topup.php
3903
0644
edit
dl
rm
Transfer.php
6229
0644
edit
dl
rm
TransferReversal.php
3226
0644
edit
dl
rm
UsageRecord.php
938
0644
edit
dl
rm
UsageRecordSummary.php
771
0644
edit
dl
rm
Webhook.php
1515
0644
edit
dl
rm
WebhookEndpoint.php
2219
0644
edit
dl
rm
WebhookSignature.php
4380
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/vendor/stripe/stripe-php/lib/Plan.php
(4883B)
<?php namespace Stripe; /** * Plans define the base price, currency, and billing cycle for subscriptions. For * example, you might have a $5/month plan that provides limited access to your * products, and a $15/month plan that allows full access. * * Related guides: <a * href="https://stripe.com/docs/billing/subscriptions/set-up-subscription">Set up * a subscription</a> and more about <a * href="https://stripe.com/docs/billing/subscriptions/products-and-plans">products * and plans</a>. * * @property string $id Unique identifier for the object. * @property string $object String representing the object's type. Objects of the same type share the same value. * @property bool $active Whether the plan can be used for new purchases. * @property null|string $aggregate_usage Specifies a usage aggregation strategy for plans of <code>usage_type=metered</code>. Allowed values are <code>sum</code> for summing up all usage during a period, <code>last_during_period</code> for using the last usage record reported within a period, <code>last_ever</code> for using the last usage record ever (across period bounds) or <code>max</code> which uses the usage record with the maximum reported usage during a period. Defaults to <code>sum</code>. * @property null|int $amount The amount in %s to be charged on the interval specified. * @property null|string $amount_decimal Same as <code>amount</code>, but contains a decimal value with at most 12 decimal places. * @property string $billing_scheme Describes how to compute the price per period. Either <code>per_unit</code> or <code>tiered</code>. <code>per_unit</code> indicates that the fixed amount (specified in <code>amount</code>) will be charged per unit in <code>quantity</code> (for plans with <code>usage_type=licensed</code>), or per unit of total usage (for plans with <code>usage_type=metered</code>). <code>tiered</code> indicates that the unit pricing will be computed using a tiering strategy as defined using the <code>tiers</code> and <code>tiers_mode</code> attributes. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>. * @property string $interval The frequency at which a subscription is billed. One of <code>day</code>, <code>week</code>, <code>month</code> or <code>year</code>. * @property int $interval_count The number of intervals (specified in the <code>interval</code> attribute) between subscription billings. For example, <code>interval=month</code> and <code>interval_count=3</code> bills every 3 months. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode. * @property \Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. * @property null|string $nickname A brief description of the plan, hidden from customers. * @property null|string|\Stripe\Product $product The product whose pricing this plan determines. * @property null|\Stripe\StripeObject[] $tiers Each element represents a pricing tier. This parameter requires <code>billing_scheme</code> to be set to <code>tiered</code>. See also the documentation for <code>billing_scheme</code>. * @property null|string $tiers_mode Defines if the tiering price should be <code>graduated</code> or <code>volume</code> based. In <code>volume</code>-based tiering, the maximum quantity within a period determines the per unit price. In <code>graduated</code> tiering, pricing can change as the quantity grows. * @property null|\Stripe\StripeObject $transform_usage Apply a transformation to the reported usage or set quantity before computing the amount billed. Cannot be combined with <code>tiers</code>. * @property null|int $trial_period_days Default number of trial days when subscribing a customer to this plan using <a href="https://stripe.com/docs/api#create_subscription-trial_from_plan"><code>trial_from_plan=true</code></a>. * @property string $usage_type Configures how the quantity per period should be determined. Can be either <code>metered</code> or <code>licensed</code>. <code>licensed</code> automatically bills the <code>quantity</code> set when adding it to a subscription. <code>metered</code> aggregates the total usage based on usage records. Defaults to <code>licensed</code>. */ class Plan extends ApiResource { const OBJECT_NAME = 'plan'; use ApiOperations\All; use ApiOperations\Create; use ApiOperations\Delete; use ApiOperations\Retrieve; use ApiOperations\Update; }
Save
cmd:
run