github.com/resonatecoop/user-api@v1.0.0-13.0.20220915120639-05dc9c04014a/model/link.go (about) 1 package model 2 3 import uuid "github.com/google/uuid" 4 5 // Link is an internet hyperlink 6 type Link struct { 7 ID uuid.UUID `bun:"type:uuid,default:uuid_generate_v4()"` 8 URI string `bun:",notnull"` 9 Type string 10 Platform string `bun:",notnull"` 11 PersonalData bool `bun:",notnull"` 12 }