gitlab.com/picnic-app/backend/role-api@v0.0.0-20230614140944-06a76ff3696d/internal/repo/spanner/data/role.go (about)

     1  package data
     2  
     3  import (
     4  	"time"
     5  
     6  	"cloud.google.com/go/spanner"
     7  )
     8  
     9  type Role struct {
    10  	ID          string
    11  	Name        string
    12  	Permissions spanner.NullJSON
    13  	CreatedAt   time.Time
    14  	UpdatedAt   *time.Time
    15  	DeletedAt   *time.Time
    16  }