changed ApiRequest field's visibility

This commit is contained in:
TotallyNot 2023-01-22 18:54:46 +01:00
parent 6e1135e102
commit 0fd74e7006
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "torn-api"
version = "0.5.4"
version = "0.5.5"
edition = "2021"
authors = ["Pyrit [2111649]"]
license = "MIT"

View file

@ -136,10 +136,10 @@ pub struct ApiRequest<A>
where
A: ApiCategoryResponse,
{
selections: Vec<&'static str>,
from: Option<DateTime<Utc>>,
to: Option<DateTime<Utc>>,
comment: Option<String>,
pub selections: Vec<&'static str>,
pub from: Option<DateTime<Utc>>,
pub to: Option<DateTime<Utc>>,
pub comment: Option<String>,
phantom: std::marker::PhantomData<A>,
}