2026-06-23 16:55:10 +00:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
const SecretsCollectionName = "threads_account_secrets"
|
|
|
|
|
|
|
|
|
|
type Secrets struct {
|
2026-06-24 10:02:42 +00:00
|
|
|
AccountID string `bson:"_id"`
|
|
|
|
|
BrowserStorageState string `bson:"browser_storage_state,omitempty"`
|
|
|
|
|
APIAccessToken string `bson:"api_access_token,omitempty"`
|
|
|
|
|
APITokenExpiresAt int64 `bson:"api_token_expires_at,omitempty"`
|
|
|
|
|
UpdateAt int64 `bson:"update_at"`
|
|
|
|
|
}
|