pub struct CreateFilterParams {
pub filter: Filter,
pub expand: Option<String>,
pub override_share_permissions: Option<bool>,
}
Expand description
struct for passing parameters to the method create_filter
Fields§
§filter: Filter
The filter to create.
expand: Option<String>
Use expand to include additional information about filter in the response. This parameter accepts a comma-separated list. Expand options include: * sharedUsers
Returns the users that the filter is shared with. This includes users that can browse projects that the filter is shared with. If you don’t specify sharedUsers
, then the sharedUsers
object is returned but it doesn’t list any users. The list of users returned is limited to 1000, to access additional users append [start-index:end-index]
to the expand request. For example, to access the next 1000 users, use ?expand=sharedUsers[1001:2000]
. * subscriptions
Returns the users that are subscribed to the filter. If you don’t specify subscriptions
, the subscriptions
object is returned but it doesn’t list any subscriptions. The list of subscriptions returned is limited to 1000, to access additional subscriptions append [start-index:end-index]
to the expand request. For example, to access the next 1000 subscriptions, use ?expand=subscriptions[1001:2000]
.
EXPERIMENTAL: Whether share permissions are overridden to enable filters with any share permissions to be created. Available to users with Administer Jira global permission.
Trait Implementations§
Source§impl Clone for CreateFilterParams
impl Clone for CreateFilterParams
Source§fn clone(&self) -> CreateFilterParams
fn clone(&self) -> CreateFilterParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more