Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Updates for beta branch #2579

Merged
merged 31 commits into from
Sep 26, 2022
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
758788b
API Updates(#2564)
dcr-stripe Aug 23, 2022
b7e16f6
Add beta README.md section (#2562)
pakrym-stripe Aug 23, 2022
5a464a3
Bump version to 40.4.0
dcr-stripe Aug 23, 2022
ace6354
Update README.md to clarify that API version can only be change in be…
pakrym-stripe Aug 24, 2022
dae250b
API Updates (#2568)
dcr-stripe Aug 26, 2022
c79e6bf
Bump version to 40.5.0
dcr-stripe Aug 26, 2022
9f4bdf8
Add coverealls step
anniel-stripe Aug 26, 2022
012444b
Add badge in README
anniel-stripe Aug 26, 2022
dd18901
Merge pull request #2569 from stripe/anniel-coveralls
anniel-stripe Aug 29, 2022
a4cba54
Add pullRequestId parameter and update commitBranch and commitAuthor …
anniel-stripe Aug 29, 2022
7676e4d
Actually pass in pullRequestId
anniel-stripe Aug 29, 2022
eed38db
New line
anniel-stripe Aug 29, 2022
4dd103f
Fix flag name
anniel-stripe Aug 29, 2022
5110377
Conditionally set ARGS
anniel-stripe Aug 29, 2022
c410664
Merge pull request #2570 from stripe/anniel-coveralls-update
anniel-stripe Aug 29, 2022
b57d197
Codegen for openapi v188 (#2573)
pakrym-stripe Aug 31, 2022
ea94d30
Bump version to 40.6.0
pakrym-stripe Aug 31, 2022
361614c
Codegen for openapi v189
yejia-stripe Sep 6, 2022
e269ca9
Merge pull request #2574 from stripe/latest-codegen-master
yejia-stripe Sep 6, 2022
edd9805
Bump version to 40.7.0
yejia-stripe Sep 6, 2022
e6162f2
Codegen for openapi v190
yejia-stripe Sep 8, 2022
0a2aaea
Merge pull request #2575 from stripe/latest-codegen-master
yejia-stripe Sep 9, 2022
13886fe
Bump version to 40.8.0
yejia-stripe Sep 9, 2022
850e79b
Codegen for openapi v193 (#2577)
kamil-stripe Sep 15, 2022
ba7ea44
Bump version to 40.9.0
kamil-stripe Sep 15, 2022
24967b8
Codegen for openapi v196 (#2578)
pakrym-stripe Sep 22, 2022
8af3018
Bump version to 40.10.0
pakrym-stripe Sep 22, 2022
e2636b6
Set version to 40.10.0 to simplify merge
pakrym-stripe Sep 22, 2022
6edb707
Include latest changes from the master branch
pakrym-stripe Sep 22, 2022
f1bb623
Reset version to 40.5.0-beta.1
pakrym-stripe Sep 22, 2022
da04e58
Codegen for openapi v196
pakrym-stripe Sep 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Codegen for openapi v190
yejia-stripe committed Sep 8, 2022

Verified

This commit was signed with the committer’s verified signature. The key has expired.
mz2 Matias Piipari
commit e6162f2d325042d548ae7ef6208e72ea53ff1c62
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v189
v190
9 changes: 9 additions & 0 deletions src/Stripe.net/Entities/Issuing/Cards/CardShipping.cs
Original file line number Diff line number Diff line change
@@ -44,6 +44,15 @@ public class CardShipping : StripeEntity<CardShipping>
[JsonProperty("phone_number")]
public string PhoneNumber { get; set; }

/// <summary>
/// Whether a signature is required for card delivery. This feature is only supported for US
/// users. Standard shipping service does not support signature on delivery. The default
/// value for standard shipping service is false and for express and priority services is
/// true.
/// </summary>
[JsonProperty("require_signature")]
public bool? RequireSignature { get; set; }

/// <summary>
/// Shipment service, such as <c>standard</c> or <c>express</c>.
/// One of: <c>express</c>, <c>priority</c>, or <c>standard</c>.
6 changes: 6 additions & 0 deletions src/Stripe.net/Services/Issuing/Cards/CardShippingOptions.cs
Original file line number Diff line number Diff line change
@@ -29,6 +29,12 @@ public class CardShippingOptions : INestedOptions
[JsonProperty("phone_number")]
public string PhoneNumber { get; set; }

/// <summary>
/// Whether a signature is required for card delivery.
/// </summary>
[JsonProperty("require_signature")]
public bool? RequireSignature { get; set; }

/// <summary>
/// Shipment service.
/// One of: <c>express</c>, <c>priority</c>, or <c>standard</c>.