Skip to content

Commit 25e8a08

Browse files
authored
add extra_domains to FetchOrgResponse (#68)
1 parent ba53314 commit 25e8a08

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/models/fetch_org_response.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ pub struct FetchOrgResponse {
4242
pub is_saml_in_test_mode: bool,
4343
#[serde(default, skip_serializing_if = "Option::is_none")]
4444
pub domain: Option<String>,
45+
pub extra_domains: Vec<String>,
4546
pub domain_autojoin: bool,
4647
pub domain_restrict: bool,
4748
}
@@ -70,6 +71,7 @@ impl FetchOrgResponse {
7071
can_setup_saml,
7172
is_saml_in_test_mode,
7273
domain: None,
74+
extra_domains: Vec::new(),
7375
domain_autojoin,
7476
domain_restrict,
7577
}
@@ -110,6 +112,3 @@ impl crate::models::FetchOrgBasicResponse {
110112
}
111113
}
112114
}
113-
114-
115-

0 commit comments

Comments
 (0)