pub struct UpdatePipelineResponse200AllOfData {
pub id: Option<i32>,
pub name: Option<String>,
pub url_title: Option<String>,
pub order_nr: Option<i32>,
pub active: Option<bool>,
pub deal_probability: Option<bool>,
pub add_time: Option<String>,
pub update_time: Option<String>,
pub selected: Option<bool>,
}
Expand description
UpdatePipelineResponse200AllOfData : The pipeline object
Fields§
§id: Option<i32>
The ID of the pipeline
name: Option<String>
The name of the pipeline
url_title: Option<String>
The pipeline title displayed in the URL
order_nr: Option<i32>
Defines the order of pipelines. First order (order_nr=0
) is the default pipeline.
active: Option<bool>
Whether this pipeline will be made inactive (hidden) or active
deal_probability: Option<bool>
Whether deal probability is disabled or enabled for this pipeline
add_time: Option<String>
The pipeline creation time. Format: YYYY-MM-DD HH:MM:SS.
update_time: Option<String>
The pipeline update time. Format: YYYY-MM-DD HH:MM:SS.
selected: Option<bool>
A boolean that shows if the pipeline is selected from a filter or not
Implementations§
Source§impl UpdatePipelineResponse200AllOfData
impl UpdatePipelineResponse200AllOfData
Sourcepub fn new() -> UpdatePipelineResponse200AllOfData
pub fn new() -> UpdatePipelineResponse200AllOfData
The pipeline object
Trait Implementations§
Source§impl Clone for UpdatePipelineResponse200AllOfData
impl Clone for UpdatePipelineResponse200AllOfData
Source§fn clone(&self) -> UpdatePipelineResponse200AllOfData
fn clone(&self) -> UpdatePipelineResponse200AllOfData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for UpdatePipelineResponse200AllOfData
impl<'de> Deserialize<'de> for UpdatePipelineResponse200AllOfData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdatePipelineResponse200AllOfData
impl PartialEq for UpdatePipelineResponse200AllOfData
Source§fn eq(&self, other: &UpdatePipelineResponse200AllOfData) -> bool
fn eq(&self, other: &UpdatePipelineResponse200AllOfData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdatePipelineResponse200AllOfData
Auto Trait Implementations§
impl Freeze for UpdatePipelineResponse200AllOfData
impl RefUnwindSafe for UpdatePipelineResponse200AllOfData
impl Send for UpdatePipelineResponse200AllOfData
impl Sync for UpdatePipelineResponse200AllOfData
impl Unpin for UpdatePipelineResponse200AllOfData
impl UnwindSafe for UpdatePipelineResponse200AllOfData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more