Skip to content

Commit

Permalink
Make timestamps time object
Browse files Browse the repository at this point in the history
Use PAN instead of Pan in struct
  • Loading branch information
johnnybravo-xyz committed Nov 21, 2023
1 parent b759000 commit 1612a1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions user.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ type FullUserProfile struct {
Products []string `json:"products"`
OrderTypes []string `json:"order_types"`
Exchanges []string `json:"exchanges"`
Pan string `json:"pan"`
PAN string `json:"pan"`
UserShortName string `json:"user_shortname"`
Tags []string `json:"tags"`
PasswordTimestamp string `json:"password_timestamp"`
TwoFATimestamp string `json:"twofa_timestamp"`
PasswordTimestamp models.Time `json:"password_timestamp"`
TwoFATimestamp models.Time `json:"twofa_timestamp"`
Meta FullUserMeta `json:"meta"`
}

Expand Down

0 comments on commit 1612a1a

Please sign in to comment.