Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokisan committed Apr 19, 2023
1 parent f65f24b commit 1d0d373
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions v5_asset_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ type V5GetDepositRecordsResponse struct {

// V5GetDepositRecordsResult :
type V5GetDepositRecordsResult struct {
Rows V5GetTransferRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
Rows V5GetDepositRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
}

// V5GetTransferRecordsRows :
type V5GetTransferRecordsRows []V5GetTransferRecordsRow
// V5GetDepositRecordsRows :
type V5GetDepositRecordsRows []V5GetDepositRecordsRow

// V5GetTransferRecordsRow :
type V5GetTransferRecordsRow struct {
// V5GetDepositRecordsRow :
type V5GetDepositRecordsRow struct {
Coin Coin `json:"coin"`
Chain string `json:"chain"`
Amount string `json:"amount"`
Expand Down Expand Up @@ -140,15 +140,15 @@ type V5GetInternalDepositRecordsResponse struct {

// V5GetInternalDepositRecordsResult :
type V5GetInternalDepositRecordsResult struct {
Rows V5GetInternalTransferRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
Rows V5GetInternalDepositRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
}

// V5GetInternalTransferRecordsRows :
type V5GetInternalTransferRecordsRows []V5GetInternalTransferRecordsRow
// V5GetInternalDepositRecordsRows :
type V5GetInternalDepositRecordsRows []V5GetInternalDepositRecordsRow

// V5GetInternalTransferRecordsRow :
type V5GetInternalTransferRecordsRow struct {
// V5GetInternalDepositRecordsRow :
type V5GetInternalDepositRecordsRow struct {
ID string `json:"id"`
Type string `json:"type"`
Coin Coin `json:"coin"`
Expand Down

0 comments on commit 1d0d373

Please sign in to comment.