Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 9m39s
test / unit (pull_request) Failing after 10m48s
test / integration (pull_request) Failing after 16m54s
21 lines
598 B
Rust
21 lines
598 B
Rust
use chrono::{DateTime, Utc};
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct RemoteActor {
|
|
pub url: String,
|
|
pub handle: String,
|
|
pub display_name: Option<String>,
|
|
pub inbox_url: String,
|
|
pub shared_inbox_url: Option<String>,
|
|
pub public_key: String,
|
|
pub avatar_url: Option<String>,
|
|
pub last_fetched_at: DateTime<Utc>,
|
|
pub bio: Option<String>,
|
|
pub banner_url: Option<String>,
|
|
pub also_known_as: Option<String>,
|
|
pub outbox_url: Option<String>,
|
|
pub followers_url: Option<String>,
|
|
pub following_url: Option<String>,
|
|
pub attachment: Vec<(String, String)>,
|
|
}
|