pub struct FavoriteCreateInput {Show 23 fields
pub id: Option<String>,
pub folder_name: Option<String>,
pub parent_id: Option<String>,
pub issue_id: Option<String>,
pub facet_id: Option<String>,
pub project_id: Option<String>,
pub project_tab: Option<ProjectTab>,
pub predefined_view_type: Option<String>,
pub predefined_view_team_id: Option<String>,
pub cycle_id: Option<String>,
pub custom_view_id: Option<String>,
pub document_id: Option<String>,
pub initiative_id: Option<String>,
pub initiative_tab: Option<InitiativeTab>,
pub label_id: Option<String>,
pub project_label_id: Option<String>,
pub user_id: Option<String>,
pub sort_order: Option<f64>,
pub customer_id: Option<String>,
pub dashboard_id: Option<String>,
pub pull_request_id: Option<String>,
pub release_id: Option<String>,
pub release_pipeline_id: Option<String>,
}Fields§
§id: Option<String>The identifier. If none is provided, the backend will generate one.
folder_name: Option<String>The name of the favorite folder.
parent_id: Option<String>The parent folder of the favorite.
issue_id: Option<String>The identifier of the issue to favorite. Can be a UUID or issue identifier (e.g., ‘LIN-123’).
facet_id: Option<String>The identifier of the facet to favorite.
project_id: Option<String>The identifier of the project to favorite.
project_tab: Option<ProjectTab>The tab of the project to favorite.
predefined_view_type: Option<String>The type of the predefined view to favorite.
predefined_view_team_id: Option<String>The identifier of team for the predefined view to favorite.
cycle_id: Option<String>The identifier of the cycle to favorite.
custom_view_id: Option<String>The identifier of the custom view to favorite.
document_id: Option<String>The identifier of the document to favorite.
initiative_id: Option<String>INTERNAL The identifier of the initiative to favorite.
initiative_tab: Option<InitiativeTab>The tab of the initiative to favorite.
label_id: Option<String>The identifier of the label to favorite.
project_label_id: Option<String>The identifier of the label to favorite.
user_id: Option<String>The identifier of the user to favorite.
sort_order: Option<f64>The position of the item in the favorites list.
customer_id: Option<String>The identifier of the customer to favorite.
dashboard_id: Option<String>The identifier of the dashboard to favorite.
pull_request_id: Option<String>The identifier of the pull request to favorite.
release_id: Option<String>ALPHA The identifier of the release to favorite.
release_pipeline_id: Option<String>ALPHA The identifier of the release pipeline to favorite.
Trait Implementations§
Source§impl Clone for FavoriteCreateInput
impl Clone for FavoriteCreateInput
Source§fn clone(&self) -> FavoriteCreateInput
fn clone(&self) -> FavoriteCreateInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more