Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateUserParams ¶
type CreateUserParams struct { FirstName string `json:"firstName"` Lastname string `json:"lastName"` Email string `json:"email"` Password string `json:"password"` }
func (CreateUserParams) Validate ¶
func (params CreateUserParams) Validate() error
type User ¶
type User struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` FirstName string `bson:"firstName" json:"firstName"` Lastname string `bson:"lastName" json:"lastName"` Email string `bson:"email" json:"email"` EncryptedPassword string `bson:"encryptedPassword" json:"-"` }
func NewUserParams ¶
func NewUserParams(params CreateUserParams) (*User, error)
Click to show internal directories.
Click to hide internal directories.