get all fields from apple podcast

This commit is contained in:
2025-03-28 23:52:46 +08:00
parent fdde34e1f0
commit 70b8e330cc
9 changed files with 285 additions and 496 deletions

View File

@@ -43,3 +43,18 @@ type SearchResult struct {
// 处理时间
ProcessedTime time.Time `json:"processedTime,omitempty"`
}
// SearchResult 表示播客搜索的结果
type SearchResult2 struct {
// 结果数量
ResultCount int `json:"resultCount,omitempty"`
// 搜索是否成功
Successful bool `json:"successful,omitempty"`
// 搜索结果项目列表
Items []ApplePodcast `json:"items,omitempty"`
// 处理时间
ProcessedTime time.Time `json:"processedTime,omitempty"`
}