1package models
2
3import "time"
4
5type Interaction struct {
6 Uri string `ch:"uri"`
7 Did string `ch:"did"`
8 Rkey string `ch:"rkey"`
9 Kind string `ch:"kind"`
10 CreatedAt time.Time `ch:"created_at"`
11 IndexedAt time.Time `ch:"indexed_at"`
12 SubjectUri string `ch:"subject_uri"`
13 SubjectDid string `ch:"subject_did"`
14}