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
parent dbd560021c
commit c7320e6cec
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 {