This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
otter-space-sdk/pkg/models/relationships.go

13 lines
459 B
Go
Raw Normal View History

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