pub struct Builder { /* private fields */ }
Expand description
A builder for ParameterSelectableValues
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn values(self, input: impl Into<String>) -> Self
pub fn values(self, input: impl Into<String>) -> Self
Appends an item to values
.
To override the contents of this collection use set_values
.
The values that are used in ParameterSelectableValues
.
sourcepub fn set_values(self, input: Option<Vec<String>>) -> Self
pub fn set_values(self, input: Option<Vec<String>>) -> Self
The values that are used in ParameterSelectableValues
.
sourcepub fn link_to_data_set_column(self, input: ColumnIdentifier) -> Self
pub fn link_to_data_set_column(self, input: ColumnIdentifier) -> Self
The column identifier that fetches values from the data set.
sourcepub fn set_link_to_data_set_column(self, input: Option<ColumnIdentifier>) -> Self
pub fn set_link_to_data_set_column(self, input: Option<ColumnIdentifier>) -> Self
The column identifier that fetches values from the data set.
sourcepub fn build(self) -> ParameterSelectableValues
pub fn build(self) -> ParameterSelectableValues
Consumes the builder and constructs a ParameterSelectableValues
.