egs-api 0.14.0

Interface to the Epic Games API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

/// A friend record with relationship status.
#[allow(missing_docs)]
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Friend {
    pub account_id: String,
    pub created: String,
    pub direction: String,
    pub favorite: bool,
    pub status: String,
}