Skip to content

Instantly share code, notes, and snippets.

@ilmiawan
Last active January 2, 2021 05:53
Show Gist options
  • Save ilmiawan/beb245511af0de5b56d90faf3d53ae91 to your computer and use it in GitHub Desktop.
Save ilmiawan/beb245511af0de5b56d90faf3d53ae91 to your computer and use it in GitHub Desktop.
package main
// UserDetails Object
type UserDetails struct {
ID int `json:"userId"`
Name string `json:"name"`
Email string `json:"email"`
DateOfBirth string `json:"dateOfBirth"`
PhoneNumber string `json:"phoneNumber"`
Gender string `json:"gender"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment