expose request in builder

This commit is contained in:
TotallyNot 2024-04-02 21:06:41 +02:00
parent c6b3051887
commit e8a8b5976b
4 changed files with 7 additions and 9 deletions

View file

@ -223,8 +223,8 @@ pub struct ApiRequestBuilder<A>
where
A: ApiSelection,
{
request: ApiRequest<A>,
id: Option<String>,
pub request: ApiRequest<A>,
pub id: Option<String>,
}
impl<A> Default for ApiRequestBuilder<A>