diff --git a/adapter/model.go b/adapter/model.go index 3187089..76528b6 100644 --- a/adapter/model.go +++ b/adapter/model.go @@ -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 {