client-api: make recursion_depth field public

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-03-27 12:34:56 -04:00 committed by Kévin Commaille
parent 85ecb1b11b
commit 7b0056b3ab
3 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@ pub mod v1 {
///
/// If `recurse` was not set, this field must be absent.
#[serde(skip_serializing_if = "Option::is_none")]
recursion_depth: Option<UInt>,
pub recursion_depth: Option<UInt>,
}
impl Request {

View File

@ -126,7 +126,7 @@ pub mod v1 {
///
/// If `recurse` was not set, this field must be absent.
#[serde(skip_serializing_if = "Option::is_none")]
recursion_depth: Option<UInt>,
pub recursion_depth: Option<UInt>,
}
impl Request {

View File

@ -133,7 +133,7 @@ pub mod v1 {
///
/// If `recurse` was not set, this field must be absent.
#[serde(skip_serializing_if = "Option::is_none")]
recursion_depth: Option<UInt>,
pub recursion_depth: Option<UInt>,
}
impl Request {