pub struct GetNotificationSchemesParams {
pub start_at: Option<i64>,
pub max_results: Option<i32>,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method get_notification_schemes
Fields§
§start_at: Option<i64>
The index of the first item to return in a page of results (page offset).
max_results: Option<i32>
The maximum number of items to return per page.
expand: Option<String>
Use expand to include additional information in the response. This parameter accepts a comma-separated list. Expand options include: * all
Returns all expandable information. * field
Returns information about any custom fields assigned to receive an event. * group
Returns information about any groups assigned to receive an event. * notificationSchemeEvents
Returns a list of event associations. This list is returned for all expandable information. * projectRole
Returns information about any project roles assigned to receive an event. * user
Returns information about any users assigned to receive an event.
Trait Implementations§
Source§impl Clone for GetNotificationSchemesParams
impl Clone for GetNotificationSchemesParams
Source§fn clone(&self) -> GetNotificationSchemesParams
fn clone(&self) -> GetNotificationSchemesParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more