pub struct AddPipelineResponse200AllOfData {
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>,
}
Expand description
AddPipelineResponse200AllOfData : 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.
Implementations§
Source§impl AddPipelineResponse200AllOfData
impl AddPipelineResponse200AllOfData
Sourcepub fn new() -> AddPipelineResponse200AllOfData
pub fn new() -> AddPipelineResponse200AllOfData
The pipeline object
Trait Implementations§
Source§impl Clone for AddPipelineResponse200AllOfData
impl Clone for AddPipelineResponse200AllOfData
Source§fn clone(&self) -> AddPipelineResponse200AllOfData
fn clone(&self) -> AddPipelineResponse200AllOfData
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 AddPipelineResponse200AllOfData
impl<'de> Deserialize<'de> for AddPipelineResponse200AllOfData
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 AddPipelineResponse200AllOfData
impl PartialEq for AddPipelineResponse200AllOfData
Source§fn eq(&self, other: &AddPipelineResponse200AllOfData) -> bool
fn eq(&self, other: &AddPipelineResponse200AllOfData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AddPipelineResponse200AllOfData
Auto Trait Implementations§
impl Freeze for AddPipelineResponse200AllOfData
impl RefUnwindSafe for AddPipelineResponse200AllOfData
impl Send for AddPipelineResponse200AllOfData
impl Sync for AddPipelineResponse200AllOfData
impl Unpin for AddPipelineResponse200AllOfData
impl UnwindSafe for AddPipelineResponse200AllOfData
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