/ internal / model / interaction_requests.go
interaction_requests.go
 1  package model
 2  
 3  import "time"
 4  
 5  type InteractionRequest struct {
 6  	Account    Account   `json:"account"`
 7  	Reply      Status    `json:"reply"`
 8  	Status     Status    `json:"status"`
 9  	AcceptedAt time.Time `json:"accepted_at"`
10  	CreatedAt  time.Time `json:"created_at"`
11  	RejectedAt time.Time `json:"rejected_at"`
12  	ID         string    `json:"id"`
13  	Type       string    `json:"type"`
14  	URI        string    `json:"uri"`
15  }