Skip to content

Commit 6a621d8

Browse files
committed
Include isolated_org_id in fetch users response
1 parent d182159 commit 6a621d8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/models/user_metadata.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ pub struct UserMetadata {
4848
pub metadata: Option<HashMap<String, Value>>,
4949
#[serde(rename = "properties", skip_serializing_if = "Option::is_none")]
5050
pub properties: Option<HashMap<String, Value>>,
51+
#[serde(rename = "isolated_org_id", skip_serializing_if = "Option::is_none")]
52+
pub isolated_org_id: Option<String>,
5153
/// `role_in_org` is only returned when using `fetch_users_in_org`
5254
/// and is their role for the org specified in the query.
5355
#[serde(rename = "role_in_org", default)]
@@ -88,6 +90,7 @@ impl UserMetadata {
8890
legacy_user_id: None,
8991
metadata: None,
9092
properties: None,
93+
isolated_org_id: None,
9194
role_in_org: None,
9295
additional_roles_in_org: None,
9396
}

0 commit comments

Comments
 (0)