access_token.go

 1// Package proto defines protocol buffer-like interfaces and data structures for the Soft Serve API.
 2package proto
 3
 4import "time"
 5
 6// AccessToken represents an access token.
 7type AccessToken struct {
 8	ID        int64
 9	Name      string
10	UserID    int64
11	TokenHash string
12	ExpiresAt time.Time
13	CreatedAt time.Time
14}