mirror of
https://github.com/logos-storage/logos-storage-go.git
synced 2026-01-08 08:13:13 +00:00
15 lines
432 B
Go
15 lines
432 B
Go
package communities
|
|
|
|
// CodexManifest represents the manifest structure returned by Codex API
|
|
type CodexManifest struct {
|
|
CID string `json:"cid"`
|
|
Manifest struct {
|
|
TreeCid string `json:"treeCid"`
|
|
DatasetSize int64 `json:"datasetSize"`
|
|
BlockSize int `json:"blockSize"`
|
|
Protected bool `json:"protected"`
|
|
Filename string `json:"filename"`
|
|
Mimetype string `json:"mimetype"`
|
|
} `json:"manifest"`
|
|
}
|