pub type ApplicationFileStatsResponse = ApplicationEnvelope<Vec<ApplicationFileStatItem>>;Expand description
Response from the application file-statistics endpoint.
Aliased Type§
pub struct ApplicationFileStatsResponse {
pub data: Vec<ApplicationFileStatItem>,
pub code: i64,
pub message: String,
pub timestamp: i64,
}Fields§
§data: Vec<ApplicationFileStatItem>Endpoint-specific response payload.
code: i64Business status code (200 indicates success).
message: StringHuman-readable business status message.
timestamp: i64Server response timestamp.