github.com/litesolutions/justifay-api@v1.0.0-2.0.20220707114139-46f28a909481/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  }