Skip to content

Commit

Permalink
fix(GetUniversalTransferRecords): invalid type and json tag
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokisan committed Mar 12, 2024
1 parent d0a0fd8 commit 6ff6349
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions v5_asset_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,14 @@ type V5GetUniversalTransferRecordsResult struct {
NextPageCursor string `json:"nextPageCursor"`
}

type V5GetUniversalTransferRecordsList []V5GetInternalTransferRecordsItem
type V5GetUniversalTransferRecordsList []V5GetUniversalTransferRecordsItem

type V5GetUniversalTransferRecordsItem struct {
TransferID string `json:"transferId"`
Coin Coin `json:"coin"`
Amount string `json:"amount"`
FromMemberID string `json:"fromMemberID"`
ToMemberID string `json:"ToMemberID"`
FromMemberID string `json:"fromMemberId"`
ToMemberID string `json:"toMemberId"`
FromAccountType AccountTypeV5 `json:"fromAccountType"`
ToAccountType AccountTypeV5 `json:"toAccountType"`
Timestamp string `json:"timestamp"`
Expand Down

0 comments on commit 6ff6349

Please sign in to comment.