package models import "time" type User struct { CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` MandateDateSigned time.Time `json:"mandate_date_signed"` FirstName string `json:"first_name"` LastName string `json:"last_name"` Email string `json:"email"` Password string `json:"password"` IBAN string `json:"iban"` BIC string `json:"bic"` MandateReference string `json:"mandate_reference"` ID int `json:"id"` }