// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.29.0 package repository import ( "time" "github.com/google/uuid" ) type ApiService struct { ID uuid.UUID `json:"id"` ClientID string `json:"client_id"` ClientSecret string `json:"client_secret"` Name string `json:"name"` RedirectUris []string `json:"redirect_uris"` Scopes []string `json:"scopes"` GrantTypes []string `json:"grant_types"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` IsActive bool `json:"is_active"` Description *string `json:"description"` } type User struct { ID uuid.UUID `json:"id"` Email string `json:"email"` FullName string `json:"full_name"` PasswordHash string `json:"password_hash"` IsAdmin bool `json:"is_admin"` CreatedAt *time.Time `json:"created_at"` UpdatedAt *time.Time `json:"updated_at"` LastLogin *time.Time `json:"last_login"` PhoneNumber *string `json:"phone_number"` ProfilePicture *string `json:"profile_picture"` CreatedBy *uuid.UUID `json:"created_by"` EmailVerified bool `json:"email_verified"` AvatarVerified bool `json:"avatar_verified"` Verified bool `json:"verified"` }