Skip to content

Commit

Permalink
adds bank commission and merchant commission rates to installment res…
Browse files Browse the repository at this point in the history
…ponse (#17)
  • Loading branch information
AlicanAkkus committed Feb 6, 2023
1 parent 698ad90 commit 6d5dc36
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions adapter/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -830,10 +830,12 @@ type CheckMasterpassUserResponse struct {
}

type InstallmentPrice struct {
InstallmentPrice *float64 `json:"installmentPrice"`
TotalPrice *float64 `json:"totalPrice"`
InstallmentNumber *int `json:"installmentNumber"`
InstallmentLabel *string `json:"installmentLabel"`
InstallmentPrice *float64 `json:"installmentPrice"`
BankCommissionRate *float64 `json:"bankCommissionRate"`
MerchantCommissionRate *float64 `json:"merchantCommissionRate"`
TotalPrice *float64 `json:"totalPrice"`
InstallmentNumber *int `json:"installmentNumber"`
InstallmentLabel *string `json:"installmentLabel"`
}

type SearchInstallmentsRequest struct {
Expand Down

0 comments on commit 6d5dc36

Please sign in to comment.