thread-master/backend/internal/model/threads_account/domain/entity/secrets.go

12 lines
386 B
Go
Raw Permalink Normal View History

2026-06-26 08:37:04 +00:00
package entity
const SecretsCollectionName = "threads_account_secrets"
type Secrets struct {
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"`
}