Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/tutor-stripe/vendor/stripe/stripe-php/lib/Price.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
// File generated from our OpenAPI spec
4
+
5
+
namespace Stripe;
6
+
7
+
/**
8
+
* Prices define the unit cost, currency, and (optional) billing cycle for both recurring and one-time purchases of products.
9
+
* <a href="https://stripe.com/docs/api#products">Products</a> help you track inventory or provisioning, and prices help you track payment terms. Different physical goods or levels of service should be represented by products, and pricing options should be represented by prices. This approach lets you change prices without having to change your provisioning scheme.
10
+
*
11
+
* For example, you might have a single "gold" product that has prices for $10/month, $100/year, and €9 once.
12
+
*
13
+
* Related guides: <a href="https://stripe.com/docs/billing/subscriptions/set-up-subscription">Set up a subscription</a>, <a href="https://stripe.com/docs/billing/invoices/create">create an invoice</a>, and more about <a href="https://stripe.com/docs/products-prices/overview">products and prices</a>.
14
+
*
15
+
* @property string $id Unique identifier for the object.
16
+
* @property string $object String representing the object's type. Objects of the same type share the same value.
17
+
* @property bool $active Whether the price can be used for new purchases.
18
+
* @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>unit_amount</code> or <code>unit_amount_decimal</code>) will be charged per unit in <code>quantity</code> (for prices with <code>usage_type=licensed</code>), or per unit of total usage (for prices 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.
19
+
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
20
+
* @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>.
21
+
* @property null|StripeObject $currency_options Prices defined in each available currency option. Each key must be a three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a> and a <a href="https://stripe.com/docs/currencies">supported currency</a>.
22
+
* @property null|(object{maximum: null|int, minimum: null|int, preset: null|int}&StripeObject) $custom_unit_amount When set, provides configuration for the amount to be adjusted by the customer during Checkout Sessions and Payment Links.
23
+
* @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.
24
+
* @property null|string $lookup_key A lookup key used to retrieve prices dynamically from a static string. This may be up to 200 characters.
25
+
* @property StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
26
+
* @property null|string $nickname A brief description of the price, hidden from customers.
27
+
* @property Product|string $product The ID of the product this price is associated with.
28
+
* @property null|(object{interval: string, interval_count: int, meter: null|string, trial_period_days: null|int, usage_type: string}&StripeObject) $recurring The recurring components of a price such as <code>interval</code> and <code>usage_type</code>.
29
+
* @property null|string $tax_behavior Only required if a <a href="https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)">default tax behavior</a> was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of <code>inclusive</code>, <code>exclusive</code>, or <code>unspecified</code>. Once specified as either <code>inclusive</code> or <code>exclusive</code>, it cannot be changed.
30
+
* @property null|((object{flat_amount: null|int, flat_amount_decimal: null|string, unit_amount: null|int, unit_amount_decimal: null|string, up_to: null|int}&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>.
31
+
* @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.
32
+
* @property null|(object{divide_by: int, round: string}&StripeObject) $transform_quantity Apply a transformation to the reported usage or set quantity before computing the amount billed. Cannot be combined with <code>tiers</code>.
33
+
* @property string $type One of <code>one_time</code> or <code>recurring</code> depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.
34
+
* @property null|int $unit_amount The unit amount in cents (or local equivalent) to be charged, represented as a whole integer if possible. Only set if <code>billing_scheme=per_unit</code>.
35
+
* @property null|string $unit_amount_decimal The unit amount in cents (or local equivalent) to be charged, represented as a decimal string with at most 12 decimal places. Only set if <code>billing_scheme=per_unit</code>.
36
+
*/
37
+
class Price extends ApiResource
38
+
{
39
+
const OBJECT_NAME = 'price';
40
+
41
+
use ApiOperations\Update;
42
+
43
+
const BILLING_SCHEME_PER_UNIT = 'per_unit';
44
+
const BILLING_SCHEME_TIERED = 'tiered';
45
+
46
+
const TAX_BEHAVIOR_EXCLUSIVE = 'exclusive';
47
+
const TAX_BEHAVIOR_INCLUSIVE = 'inclusive';
48
+
const TAX_BEHAVIOR_UNSPECIFIED = 'unspecified';
49
+
50
+
const TIERS_MODE_GRADUATED = 'graduated';
51
+
const TIERS_MODE_VOLUME = 'volume';
52
+
53
+
const TYPE_ONE_TIME = 'one_time';
54
+
const TYPE_RECURRING = 'recurring';
55
+
56
+
/**
57
+
* Creates a new <a href="https://docs.stripe.com/api/prices">Price</a> for an
58
+
* existing <a href="https://docs.stripe.com/api/products">Product</a>. The Price
59
+
* can be recurring or one-time.
60
+
*
61
+
* @param null|array{active?: bool, billing_scheme?: string, currency: string, currency_options?: array<string, array{custom_unit_amount?: array{enabled: bool, maximum?: int, minimum?: int, preset?: int}, tax_behavior?: string, tiers?: (array{flat_amount?: int, flat_amount_decimal?: string, unit_amount?: int, unit_amount_decimal?: string, up_to: array|int|string})[], unit_amount?: int, unit_amount_decimal?: string}>, custom_unit_amount?: array{enabled: bool, maximum?: int, minimum?: int, preset?: int}, expand?: string[], lookup_key?: string, metadata?: array<string, string>, nickname?: string, product?: string, product_data?: array{active?: bool, id?: string, metadata?: array<string, string>, name: string, statement_descriptor?: string, tax_code?: string, unit_label?: string}, recurring?: array{interval: string, interval_count?: int, meter?: string, trial_period_days?: int, usage_type?: string}, tax_behavior?: string, tiers?: (array{flat_amount?: int, flat_amount_decimal?: string, unit_amount?: int, unit_amount_decimal?: string, up_to: array|int|string})[], tiers_mode?: string, transfer_lookup_key?: bool, transform_quantity?: array{divide_by: int, round: string}, unit_amount?: int, unit_amount_decimal?: string} $params
62
+
* @param null|array|string $options
63
+
*
64
+
* @return Price the created resource
65
+
*
66
+
* @throws Exception\ApiErrorException if the request fails
67
+
*/
68
+
public static function create($params = null, $options = null)
69
+
{
70
+
self::_validateParams($params);
71
+
$url = static::classUrl();
72
+
73
+
list($response, $opts) = static::_staticRequest('post', $url, $params, $options);
74
+
$obj = Util\Util::convertToStripeObject($response->json, $opts);
75
+
$obj->setLastResponse($response);
76
+
77
+
return $obj;
78
+
}
79
+
80
+
/**
81
+
* Returns a list of your active prices, excluding <a
82
+
* href="/docs/products-prices/pricing-models#inline-pricing">inline prices</a>.
83
+
* For the list of inactive prices, set <code>active</code> to false.
84
+
*
85
+
* @param null|array{active?: bool, created?: array|int, currency?: string, ending_before?: string, expand?: string[], limit?: int, lookup_keys?: string[], product?: string, recurring?: array{interval?: string, meter?: string, usage_type?: string}, starting_after?: string, type?: string} $params
86
+
* @param null|array|string $opts
87
+
*
88
+
* @return Collection<Price> of ApiResources
89
+
*
90
+
* @throws Exception\ApiErrorException if the request fails
91
+
*/
92
+
public static function all($params = null, $opts = null)
93
+
{
94
+
$url = static::classUrl();
95
+
96
+
return static::_requestPage($url, Collection::class, $params, $opts);
97
+
}
98
+
99
+
/**
100
+
* Retrieves the price with the given ID.
101
+
*
102
+
* @param array|string $id the ID of the API resource to retrieve, or an options array containing an `id` key
103
+
* @param null|array|string $opts
104
+
*
105
+
* @return Price
106
+
*
107
+
* @throws Exception\ApiErrorException if the request fails
108
+
*/
109
+
public static function retrieve($id, $opts = null)
110
+
{
111
+
$opts = Util\RequestOptions::parse($opts);
112
+
$instance = new static($id, $opts);
113
+
$instance->refresh();
114
+
115
+
return $instance;
116
+
}
117
+
118
+
/**
119
+
* Updates the specified price by setting the values of the parameters passed. Any
120
+
* parameters not provided are left unchanged.
121
+
*
122
+
* @param string $id the ID of the resource to update
123
+
* @param null|array{active?: bool, currency_options?: null|array<string, array{custom_unit_amount?: array{enabled: bool, maximum?: int, minimum?: int, preset?: int}, tax_behavior?: string, tiers?: (array{flat_amount?: int, flat_amount_decimal?: string, unit_amount?: int, unit_amount_decimal?: string, up_to: array|int|string})[], unit_amount?: int, unit_amount_decimal?: string}>, expand?: string[], lookup_key?: string, metadata?: null|array<string, string>, nickname?: string, tax_behavior?: string, transfer_lookup_key?: bool} $params
124
+
* @param null|array|string $opts
125
+
*
126
+
* @return Price the updated resource
127
+
*
128
+
* @throws Exception\ApiErrorException if the request fails
129
+
*/
130
+
public static function update($id, $params = null, $opts = null)
131
+
{
132
+
self::_validateParams($params);
133
+
$url = static::resourceUrl($id);
134
+
135
+
list($response, $opts) = static::_staticRequest('post', $url, $params, $opts);
136
+
$obj = Util\Util::convertToStripeObject($response->json, $opts);
137
+
$obj->setLastResponse($response);
138
+
139
+
return $obj;
140
+
}
141
+
142
+
/**
143
+
* @param null|array $params
144
+
* @param null|array|string $opts
145
+
*
146
+
* @return SearchResult<Price> the price search results
147
+
*
148
+
* @throws Exception\ApiErrorException if the request fails
149
+
*/
150
+
public static function search($params = null, $opts = null)
151
+
{
152
+
$url = '/v1/prices/search';
153
+
154
+
return static::_requestPage($url, SearchResult::class, $params, $opts);
155
+
}
156
+
}
157
+