Skip to content

Commit

Permalink
Merge pull request #793 from stripe/remi/codegen-f9f9b8b
Browse files Browse the repository at this point in the history
Rename `sort_code` to `sender_sort_code` on `SourceTransaction` for BACS debit
  • Loading branch information
ob-stripe committed Feb 4, 2020
2 parents ca2de47 + 31f6aed commit 7f7cc5b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion types/2019-12-03/SourceTransactions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ declare module 'stripe' {
/**
* Sender sort code associated with the transfer.
*/
sort_code?: string;
sender_sort_code?: string;
}

interface PaperCheck {
Expand Down
2 changes: 1 addition & 1 deletion types/2019-12-03/SubscriptionSchedules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ declare module 'stripe' {

class SubscriptionSchedulesResource {
/**
* Creates a new subscription schedule object.
* Creates a new subscription schedule object. Each customer can have up to 25 active or scheduled subscriptions.
*/
create(
params?: SubscriptionScheduleCreateParams,
Expand Down
4 changes: 2 additions & 2 deletions types/2019-12-03/Subscriptions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ declare module 'stripe' {
expand?: Array<string>;

/**
* A list of up to 25 subscription items, each with an attached plan.
* A list of up to 20 subscription items, each with an attached plan.
*/
items?: Array<SubscriptionCreateParams.Item>;

Expand Down Expand Up @@ -789,7 +789,7 @@ declare module 'stripe' {

class SubscriptionsResource {
/**
* Creates a new subscription on an existing customer.
* Creates a new subscription on an existing customer. Each customer can have up to 25 active or scheduled subscriptions.
*/
create(
params: SubscriptionCreateParams,
Expand Down

0 comments on commit 7f7cc5b

Please sign in to comment.