Skip to content

Commit 15b426a

Browse files
committed
Make extra_domains optional
1 parent e19f75e commit 15b426a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/update_org_request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub struct UpdateOrgRequest {
3333
#[serde(rename = "require_2fa_by", skip_serializing_if = "Option::is_none")]
3434
pub require_2fa_by: Option<chrono::DateTime<chrono::Utc>>,
3535
#[serde(rename = "extra_domains", skip_serializing_if = "Option::is_none")]
36-
pub extra_domains: Vec<String>,
36+
pub extra_domains: Option<Vec<String>>,
3737
}
3838

3939
impl UpdateOrgRequest {

0 commit comments

Comments
 (0)