From e364cdf5f4bd9cd1ed45832f8306e42e3613601f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 22 Jan 2026 13:57:54 +0000 Subject: [PATCH] feat: Add support for logging into the file (#527) Add (compatible) logging into the file. --- .../src/api/identity/v4/user/passkey/register_finish.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openstack_sdk/src/api/identity/v4/user/passkey/register_finish.rs b/openstack_sdk/src/api/identity/v4/user/passkey/register_finish.rs index 292e3285e..c4ca5bc51 100644 --- a/openstack_sdk/src/api/identity/v4/user/passkey/register_finish.rs +++ b/openstack_sdk/src/api/identity/v4/user/passkey/register_finish.rs @@ -34,9 +34,9 @@ pub struct CredProps { /// /// Note that this extension is UNSIGNED and may have been altered by page /// javascript. - #[serde()] - #[builder(setter(into))] - pub(crate) rk: bool, + #[serde(skip_serializing_if = "Option::is_none")] + #[builder(default, setter(into))] + pub(crate) rk: Option>, } #[derive(Debug, Deserialize, Clone, Serialize)]