steam-user 0.1.0

Steam User web client for Rust - HTTP-based Steam Community interactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};

/// Represents a Steam Help Request (Support Ticket).
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct HelpRequest {
    /// The unique ID of the help request.
    pub id: String,
    /// The title or subject of the request.
    pub title: String,
    /// The date the request was created.
    pub date_created: String,
    /// The current status of the request (e.g., "Open", "Closed").
    pub status: String,
}