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

Fix: change is_same_bank_account_owner type to bool #73

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
repos:
# Websec hook is MANDATORY, DO NOT comment it.
- repo: https://github.com/melisource/fury_websec-git-hooks
rev: v1.1.0
hooks:
- id: pre_commit_hook
stages: [commit]
- id: post_commit_hook
stages: [post-commit]

# Datasec hook is MANDATORY, DO NOT comment it.
- repo: https://github.com/melisource/fury_datasec-git-hooks
rev: 1.0.3
hooks:
- id: pre_commit_hook
stages: [commit]
verbose: true
2 changes: 1 addition & 1 deletion pkg/payment/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ type BankInfoResponse struct {
Payer BankInfoPayerResponse `json:"payer"`
Collector BankInfoCollectorResponse `json:"collector"`

IsSameBankAccountOwner string `json:"is_same_bank_account_owner"`
IsSameBankAccountOwner bool `json:"is_same_bank_account_owner"`
}

// SubscriptionSequenceResponse represents subscription sequence.
Expand Down
Loading