Skip to content

Commit

Permalink
fixing conversations_models.go with any
Browse files Browse the repository at this point in the history
  • Loading branch information
panperla committed Jan 18, 2024
1 parent a363fda commit ef761e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions reamaze/contacts_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ type CreateContactRequest struct {

type UpdateContactRequest struct {
Contact struct {
Name string `json:"name"`
FriendlyName string `json:"friendly_name"`
ExternalAvatarURL string `json:"external_avatar_url"`
Notes []string `json:"notes"`
Data interface{} `json:"data"`
Name string `json:"name"`
FriendlyName string `json:"friendly_name"`
ExternalAvatarURL string `json:"external_avatar_url"`
Notes []string `json:"notes"`
Data any `json:"data"`
} `json:"contact"`
}

Expand Down

0 comments on commit ef761e1

Please sign in to comment.