Skip to content

Commit e2b090c

Browse files
Update generated code for v425
1 parent 869dd32 commit e2b090c

19 files changed

+196
-1
lines changed

OPENAPI_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v424
1+
v425

lib/Coupon.php

+4
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,8 @@ class Coupon extends ApiResource
3636
use ApiOperations\Delete;
3737
use ApiOperations\Retrieve;
3838
use ApiOperations\Update;
39+
40+
const DURATION_FOREVER = 'forever';
41+
const DURATION_ONCE = 'once';
42+
const DURATION_REPEATING = 'repeating';
3943
}

lib/Invoice.php

+4
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,10 @@ class Invoice extends ApiResource
147147
const COLLECTION_METHOD_CHARGE_AUTOMATICALLY = 'charge_automatically';
148148
const COLLECTION_METHOD_SEND_INVOICE = 'send_invoice';
149149

150+
const CUSTOMER_TAX_EXEMPT_EXEMPT = 'exempt';
151+
const CUSTOMER_TAX_EXEMPT_NONE = 'none';
152+
const CUSTOMER_TAX_EXEMPT_REVERSE = 'reverse';
153+
150154
/** @deprecated */
151155
const STATUS_DELETED = 'deleted';
152156
const STATUS_DRAFT = 'draft';

lib/Issuing/Authorization.php

+10
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ class Authorization extends \Stripe\ApiResource
4444
use \Stripe\ApiOperations\Retrieve;
4545
use \Stripe\ApiOperations\Update;
4646

47+
const AUTHORIZATION_METHOD_CHIP = 'chip';
48+
const AUTHORIZATION_METHOD_CONTACTLESS = 'contactless';
49+
const AUTHORIZATION_METHOD_KEYED_IN = 'keyed_in';
50+
const AUTHORIZATION_METHOD_ONLINE = 'online';
51+
const AUTHORIZATION_METHOD_SWIPE = 'swipe';
52+
53+
const STATUS_CLOSED = 'closed';
54+
const STATUS_PENDING = 'pending';
55+
const STATUS_REVERSED = 'reversed';
56+
4757
/**
4858
* @param null|array $params
4959
* @param null|array|string $opts

lib/Issuing/Card.php

+16
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,20 @@ class Card extends \Stripe\ApiResource
3939
use \Stripe\ApiOperations\Create;
4040
use \Stripe\ApiOperations\Retrieve;
4141
use \Stripe\ApiOperations\Update;
42+
43+
const CANCELLATION_REASON_DESIGN_REJECTED = 'design_rejected';
44+
const CANCELLATION_REASON_LOST = 'lost';
45+
const CANCELLATION_REASON_STOLEN = 'stolen';
46+
47+
const REPLACEMENT_REASON_DAMAGED = 'damaged';
48+
const REPLACEMENT_REASON_EXPIRED = 'expired';
49+
const REPLACEMENT_REASON_LOST = 'lost';
50+
const REPLACEMENT_REASON_STOLEN = 'stolen';
51+
52+
const STATUS_ACTIVE = 'active';
53+
const STATUS_CANCELED = 'canceled';
54+
const STATUS_INACTIVE = 'inactive';
55+
56+
const TYPE_PHYSICAL = 'physical';
57+
const TYPE_VIRTUAL = 'virtual';
4258
}

lib/Issuing/Cardholder.php

+7
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,11 @@ class Cardholder extends \Stripe\ApiResource
3434
use \Stripe\ApiOperations\Create;
3535
use \Stripe\ApiOperations\Retrieve;
3636
use \Stripe\ApiOperations\Update;
37+
38+
const STATUS_ACTIVE = 'active';
39+
const STATUS_BLOCKED = 'blocked';
40+
const STATUS_INACTIVE = 'inactive';
41+
42+
const TYPE_COMPANY = 'company';
43+
const TYPE_INDIVIDUAL = 'individual';
3744
}

lib/Issuing/Dispute.php

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ class Dispute extends \Stripe\ApiResource
3131
use \Stripe\ApiOperations\Retrieve;
3232
use \Stripe\ApiOperations\Update;
3333

34+
const STATUS_EXPIRED = 'expired';
35+
const STATUS_LOST = 'lost';
36+
const STATUS_SUBMITTED = 'submitted';
37+
const STATUS_UNSUBMITTED = 'unsubmitted';
38+
const STATUS_WON = 'won';
39+
3440
/**
3541
* @param null|array $params
3642
* @param null|array|string $opts

lib/Issuing/Transaction.php

+7
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,11 @@ class Transaction extends \Stripe\ApiResource
3939
use \Stripe\ApiOperations\All;
4040
use \Stripe\ApiOperations\Retrieve;
4141
use \Stripe\ApiOperations\Update;
42+
43+
const TYPE_CAPTURE = 'capture';
44+
const TYPE_REFUND = 'refund';
45+
46+
const WALLET_APPLE_PAY = 'apple_pay';
47+
const WALLET_GOOGLE_PAY = 'google_pay';
48+
const WALLET_SAMSUNG_PAY = 'samsung_pay';
4249
}

lib/Mandate.php

+7
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,11 @@ class Mandate extends ApiResource
2424
const OBJECT_NAME = 'mandate';
2525

2626
use ApiOperations\Retrieve;
27+
28+
const STATUS_ACTIVE = 'active';
29+
const STATUS_INACTIVE = 'inactive';
30+
const STATUS_PENDING = 'pending';
31+
32+
const TYPE_MULTI_USE = 'multi_use';
33+
const TYPE_SINGLE_USE = 'single_use';
2734
}

lib/PaymentIntent.php

+18
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,24 @@ class PaymentIntent extends ApiResource
6767
use ApiOperations\Search;
6868
use ApiOperations\Update;
6969

70+
const CANCELLATION_REASON_ABANDONED = 'abandoned';
71+
const CANCELLATION_REASON_AUTOMATIC = 'automatic';
72+
const CANCELLATION_REASON_DUPLICATE = 'duplicate';
73+
const CANCELLATION_REASON_FAILED_INVOICE = 'failed_invoice';
74+
const CANCELLATION_REASON_FRAUDULENT = 'fraudulent';
75+
const CANCELLATION_REASON_REQUESTED_BY_CUSTOMER = 'requested_by_customer';
76+
const CANCELLATION_REASON_VOID_INVOICE = 'void_invoice';
77+
78+
const CAPTURE_METHOD_AUTOMATIC = 'automatic';
79+
const CAPTURE_METHOD_AUTOMATIC_ASYNC = 'automatic_async';
80+
const CAPTURE_METHOD_MANUAL = 'manual';
81+
82+
const CONFIRMATION_METHOD_AUTOMATIC = 'automatic';
83+
const CONFIRMATION_METHOD_MANUAL = 'manual';
84+
85+
const SETUP_FUTURE_USAGE_OFF_SESSION = 'off_session';
86+
const SETUP_FUTURE_USAGE_ON_SESSION = 'on_session';
87+
7088
const STATUS_CANCELED = 'canceled';
7189
const STATUS_PROCESSING = 'processing';
7290
const STATUS_REQUIRES_ACTION = 'requires_action';

lib/PaymentMethod.php

+34
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,40 @@ class PaymentMethod extends ApiResource
6363
use ApiOperations\Retrieve;
6464
use ApiOperations\Update;
6565

66+
const TYPE_ACSS_DEBIT = 'acss_debit';
67+
const TYPE_AFFIRM = 'affirm';
68+
const TYPE_AFTERPAY_CLEARPAY = 'afterpay_clearpay';
69+
const TYPE_ALIPAY = 'alipay';
70+
const TYPE_AU_BECS_DEBIT = 'au_becs_debit';
71+
const TYPE_BACS_DEBIT = 'bacs_debit';
72+
const TYPE_BANCONTACT = 'bancontact';
73+
const TYPE_BLIK = 'blik';
74+
const TYPE_BOLETO = 'boleto';
75+
const TYPE_CARD = 'card';
76+
const TYPE_CARD_PRESENT = 'card_present';
77+
const TYPE_CASHAPP = 'cashapp';
78+
const TYPE_CUSTOMER_BALANCE = 'customer_balance';
79+
const TYPE_EPS = 'eps';
80+
const TYPE_FPX = 'fpx';
81+
const TYPE_GIROPAY = 'giropay';
82+
const TYPE_GRABPAY = 'grabpay';
83+
const TYPE_IDEAL = 'ideal';
84+
const TYPE_INTERAC_PRESENT = 'interac_present';
85+
const TYPE_KLARNA = 'klarna';
86+
const TYPE_KONBINI = 'konbini';
87+
const TYPE_LINK = 'link';
88+
const TYPE_OXXO = 'oxxo';
89+
const TYPE_P24 = 'p24';
90+
const TYPE_PAYNOW = 'paynow';
91+
const TYPE_PAYPAL = 'paypal';
92+
const TYPE_PIX = 'pix';
93+
const TYPE_PROMPTPAY = 'promptpay';
94+
const TYPE_SEPA_DEBIT = 'sepa_debit';
95+
const TYPE_SOFORT = 'sofort';
96+
const TYPE_US_BANK_ACCOUNT = 'us_bank_account';
97+
const TYPE_WECHAT_PAY = 'wechat_pay';
98+
const TYPE_ZIP = 'zip';
99+
66100
/**
67101
* @param null|array $params
68102
* @param null|array|string $opts

lib/Plan.php

+19
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,23 @@ class Plan extends ApiResource
4444
use ApiOperations\Delete;
4545
use ApiOperations\Retrieve;
4646
use ApiOperations\Update;
47+
48+
const AGGREGATE_USAGE_LAST_DURING_PERIOD = 'last_during_period';
49+
const AGGREGATE_USAGE_LAST_EVER = 'last_ever';
50+
const AGGREGATE_USAGE_MAX = 'max';
51+
const AGGREGATE_USAGE_SUM = 'sum';
52+
53+
const BILLING_SCHEME_PER_UNIT = 'per_unit';
54+
const BILLING_SCHEME_TIERED = 'tiered';
55+
56+
const INTERVAL_DAY = 'day';
57+
const INTERVAL_MONTH = 'month';
58+
const INTERVAL_WEEK = 'week';
59+
const INTERVAL_YEAR = 'year';
60+
61+
const TIERS_MODE_GRADUATED = 'graduated';
62+
const TIERS_MODE_VOLUME = 'volume';
63+
64+
const USAGE_TYPE_LICENSED = 'licensed';
65+
const USAGE_TYPE_METERED = 'metered';
4766
}

lib/Radar/ValueList.php

+9
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,13 @@ class ValueList extends \Stripe\ApiResource
2929
use \Stripe\ApiOperations\Delete;
3030
use \Stripe\ApiOperations\Retrieve;
3131
use \Stripe\ApiOperations\Update;
32+
33+
const ITEM_TYPE_CARD_BIN = 'card_bin';
34+
const ITEM_TYPE_CARD_FINGERPRINT = 'card_fingerprint';
35+
const ITEM_TYPE_CASE_SENSITIVE_STRING = 'case_sensitive_string';
36+
const ITEM_TYPE_COUNTRY = 'country';
37+
const ITEM_TYPE_CUSTOMER_ID = 'customer_id';
38+
const ITEM_TYPE_EMAIL = 'email';
39+
const ITEM_TYPE_IP_ADDRESS = 'ip_address';
40+
const ITEM_TYPE_STRING = 'string';
3241
}

lib/Review.php

+9
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ class Review extends ApiResource
3232
use ApiOperations\All;
3333
use ApiOperations\Retrieve;
3434

35+
const CLOSED_REASON_APPROVED = 'approved';
36+
const CLOSED_REASON_DISPUTED = 'disputed';
37+
const CLOSED_REASON_REDACTED = 'redacted';
38+
const CLOSED_REASON_REFUNDED = 'refunded';
39+
const CLOSED_REASON_REFUNDED_AS_FRAUD = 'refunded_as_fraud';
40+
41+
const OPENED_REASON_MANUAL = 'manual';
42+
const OPENED_REASON_RULE = 'rule';
43+
3544
/**
3645
* Possible string representations of the current, the opening or the closure reason of the review.
3746
* Not all of these enumeration apply to all of the ´reason´ fields. Please consult the Review object to

lib/SetupIntent.php

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ class SetupIntent extends ApiResource
6262
use ApiOperations\Retrieve;
6363
use ApiOperations\Update;
6464

65+
const CANCELLATION_REASON_ABANDONED = 'abandoned';
66+
const CANCELLATION_REASON_DUPLICATE = 'duplicate';
67+
const CANCELLATION_REASON_REQUESTED_BY_CUSTOMER = 'requested_by_customer';
68+
6569
const STATUS_CANCELED = 'canceled';
6670
const STATUS_PROCESSING = 'processing';
6771
const STATUS_REQUIRES_ACTION = 'requires_action';

lib/Source.php

+20
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,26 @@ class Source extends ApiResource
7474
const STATUS_FAILED = 'failed';
7575
const STATUS_PENDING = 'pending';
7676

77+
const TYPE_ACH_CREDIT_TRANSFER = 'ach_credit_transfer';
78+
const TYPE_ACH_DEBIT = 'ach_debit';
79+
const TYPE_ACSS_DEBIT = 'acss_debit';
80+
const TYPE_ALIPAY = 'alipay';
81+
const TYPE_AU_BECS_DEBIT = 'au_becs_debit';
82+
const TYPE_BANCONTACT = 'bancontact';
83+
const TYPE_CARD = 'card';
84+
const TYPE_CARD_PRESENT = 'card_present';
85+
const TYPE_EPS = 'eps';
86+
const TYPE_GIROPAY = 'giropay';
87+
const TYPE_IDEAL = 'ideal';
88+
const TYPE_KLARNA = 'klarna';
89+
const TYPE_MULTIBANCO = 'multibanco';
90+
const TYPE_P24 = 'p24';
91+
const TYPE_SEPA_CREDIT_TRANSFER = 'sepa_credit_transfer';
92+
const TYPE_SEPA_DEBIT = 'sepa_debit';
93+
const TYPE_SOFORT = 'sofort';
94+
const TYPE_THREE_D_SECURE = 'three_d_secure';
95+
const TYPE_WECHAT = 'wechat';
96+
7797
const USAGE_REUSABLE = 'reusable';
7898
const USAGE_SINGLE_USE = 'single_use';
7999

lib/Subscription.php

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ class Subscription extends ApiResource
6363
use ApiOperations\Search;
6464
use ApiOperations\Update;
6565

66+
const COLLECTION_METHOD_CHARGE_AUTOMATICALLY = 'charge_automatically';
67+
const COLLECTION_METHOD_SEND_INVOICE = 'send_invoice';
68+
6669
const PAYMENT_BEHAVIOR_ALLOW_INCOMPLETE = 'allow_incomplete';
6770
const PAYMENT_BEHAVIOR_DEFAULT_INCOMPLETE = 'default_incomplete';
6871
const PAYMENT_BEHAVIOR_ERROR_IF_INCOMPLETE = 'error_if_incomplete';

lib/SubscriptionSchedule.php

+11
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@ class SubscriptionSchedule extends ApiResource
3737
use ApiOperations\Retrieve;
3838
use ApiOperations\Update;
3939

40+
const END_BEHAVIOR_CANCEL = 'cancel';
41+
const END_BEHAVIOR_NONE = 'none';
42+
const END_BEHAVIOR_RELEASE = 'release';
43+
const END_BEHAVIOR_RENEW = 'renew';
44+
45+
const STATUS_ACTIVE = 'active';
46+
const STATUS_CANCELED = 'canceled';
47+
const STATUS_COMPLETED = 'completed';
48+
const STATUS_NOT_STARTED = 'not_started';
49+
const STATUS_RELEASED = 'released';
50+
4051
/**
4152
* @param null|array $params
4253
* @param null|array|string $opts

lib/Terminal/Reader.php

+7
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ class Reader extends \Stripe\ApiResource
3232
use \Stripe\ApiOperations\Retrieve;
3333
use \Stripe\ApiOperations\Update;
3434

35+
const DEVICE_TYPE_BBPOS_CHIPPER2X = 'bbpos_chipper2x';
36+
const DEVICE_TYPE_BBPOS_WISEPAD3 = 'bbpos_wisepad3';
37+
const DEVICE_TYPE_BBPOS_WISEPOS_E = 'bbpos_wisepos_e';
38+
const DEVICE_TYPE_SIMULATED_WISEPOS_E = 'simulated_wisepos_e';
39+
const DEVICE_TYPE_STRIPE_M2 = 'stripe_m2';
40+
const DEVICE_TYPE_VERIFONE_P400 = 'verifone_P400';
41+
3542
/**
3643
* @param null|array $params
3744
* @param null|array|string $opts

0 commit comments

Comments
 (0)