pub struct OrganizationNew { pub org_id: String, pub org_name: Option, } impl OrganizationNew { pub fn new(org_name: Option) -> Self { Self { org_id: common_utils::generate_id_with_default_len("org"), org_name, } } }