pub struct Builder { /* private fields */ }
Expand description
A builder for SheetVisualScopingConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn sheet_id(self, input: impl Into<String>) -> Self
pub fn sheet_id(self, input: impl Into<String>) -> Self
The selected sheet that the filter is applied to.
sourcepub fn set_sheet_id(self, input: Option<String>) -> Self
pub fn set_sheet_id(self, input: Option<String>) -> Self
The selected sheet that the filter is applied to.
sourcepub fn scope(self, input: FilterVisualScope) -> Self
pub fn scope(self, input: FilterVisualScope) -> Self
The scope of the applied entities. Choose one of the following options:
-
ALL_VISUALS
-
SELECTED_VISUALS
sourcepub fn set_scope(self, input: Option<FilterVisualScope>) -> Self
pub fn set_scope(self, input: Option<FilterVisualScope>) -> Self
The scope of the applied entities. Choose one of the following options:
-
ALL_VISUALS
-
SELECTED_VISUALS
sourcepub fn visual_ids(self, input: impl Into<String>) -> Self
pub fn visual_ids(self, input: impl Into<String>) -> Self
Appends an item to visual_ids
.
To override the contents of this collection use set_visual_ids
.
The selected visuals that the filter is applied to.
sourcepub fn set_visual_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_visual_ids(self, input: Option<Vec<String>>) -> Self
The selected visuals that the filter is applied to.
sourcepub fn build(self) -> SheetVisualScopingConfiguration
pub fn build(self) -> SheetVisualScopingConfiguration
Consumes the builder and constructs a SheetVisualScopingConfiguration
.