otter-space-sdk/pkg/models/relationships.go

13 lines
379 B
Go
Raw Normal View History

2024-02-16 14:16:50 +00:00
package models
type AnthroveUserRelationship struct {
UserID string `json:"user_id"`
Username string `json:"username"`
ScrapeTimeInterval string `json:"scrape_time_interval"`
Source AnthroveSource `json:"source"`
}
type AnthrovePostRelationship struct {
PostID string `json:"post_id"`
Url string `json:"url"`
}