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

Add missing Account settings #875

Merged
merged 1 commit into from
Jun 18, 2019
Merged
Changes from all commits
Commits
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
8 changes: 6 additions & 2 deletions account.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ type AccountSettingsDashboardParams struct {
// AccountSettingsPaymentsParams represent allowed parameters to configure settings across payment
// methods for charging on the account.
type AccountSettingsPaymentsParams struct {
StatementDescriptor *string `form:"statement_descriptor"`
StatementDescriptor *string `form:"statement_descriptor"`
StatementDescriptorKana *string `form:"statement_descriptor_kana"`
StatementDescriptorKanji *string `form:"statement_descriptor_kanji"`
}

// AccountSettingsPayoutsParams represent allowed parameters to configure settings specific to the
Expand Down Expand Up @@ -341,7 +343,9 @@ type AccountSettingsDashboard struct {
// AccountSettingsPayments represents settings that apply across payment methods for charging on
// the account.
type AccountSettingsPayments struct {
StatementDescriptor string `json:"statement_descriptor"`
StatementDescriptor string `json:"statement_descriptor"`
StatementDescriptorKana string `json:"statement_descriptor_kana"`
StatementDescriptorKanji string `json:"statement_descriptor_kanji"`
}

// AccountSettingsPayouts represents settings specific to the account’s payouts.
Expand Down