Skip to content

Commit

Permalink
fix non nullable fields for payout account response
Browse files Browse the repository at this point in the history
  • Loading branch information
tuncaserhat committed Jul 20, 2023
1 parent d1098a2 commit 5d94fc8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions adapter/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,12 +718,12 @@ type ApmDepositPaymentResponse struct {
}

type PayoutAccountResponse struct {
Id *int64 `json:"id"`
AccountType *PayoutAccountType `json:"type"`
ExternalAccountId *string `json:"externalAccountId"`
Currency *Currency `json:"currency"`
AccountOwner *AccountOwner `json:"accountOwner"`
SubMerchantMemberId *int64 `json:"subMerchantMemberId"`
Id int64 `json:"id"`
AccountType PayoutAccountType `json:"type"`
ExternalAccountId string `json:"externalAccountId"`
Currency Currency `json:"currency"`
AccountOwner AccountOwner `json:"accountOwner"`
SubMerchantMemberId *int64 `json:"subMerchantMemberId"`
}

type RefundWalletTransactionRequest struct {
Expand Down

0 comments on commit 5d94fc8

Please sign in to comment.