pub struct DealCollectionResponseObject {Show 21 fields
pub id: Option<i32>,
pub creator_user_id: Option<i32>,
pub user_id: Option<i32>,
pub person_id: Option<i32>,
pub org_id: Option<i32>,
pub stage_id: Option<i32>,
pub title: Option<String>,
pub value: Option<f32>,
pub currency: Option<String>,
pub add_time: Option<String>,
pub update_time: Option<String>,
pub status: Option<String>,
pub probability: Option<Option<f32>>,
pub lost_reason: Option<Option<String>>,
pub visible_to: Option<String>,
pub close_time: Option<Option<String>>,
pub pipeline_id: Option<i32>,
pub won_time: Option<String>,
pub lost_time: Option<String>,
pub expected_close_date: Option<String>,
pub label: Option<String>,
}
Fields§
§id: Option<i32>
The ID of the deal
creator_user_id: Option<i32>
The ID of the deal creator
user_id: Option<i32>
The ID of the user
person_id: Option<i32>
The ID of the person associated with the deal
org_id: Option<i32>
The ID of the organization associated with the deal
stage_id: Option<i32>
The ID of the deal stage
title: Option<String>
The title of the deal
value: Option<f32>
The value of the deal
currency: Option<String>
The currency associated with the deal
add_time: Option<String>
The creation date and time of the deal in UTC. Format: YYYY-MM-DD HH:MM:SS.
update_time: Option<String>
The last update date and time of the deal in UTC. Format: YYYY-MM-DD HH:MM:SS.
status: Option<String>
The status of the deal
probability: Option<Option<f32>>
The success probability percentage of the deal
lost_reason: Option<Option<String>>
The reason for losing the deal
visible_to: Option<String>
The visibility of the deal
close_time: Option<Option<String>>
The date and time of closing the deal in UTC. Format: YYYY-MM-DD HH:MM:SS.
pipeline_id: Option<i32>
The ID of the pipeline associated with the deal
won_time: Option<String>
The date and time of changing the deal status to won in UTC. Format: YYYY-MM-DD HH:MM:SS.
lost_time: Option<String>
The date and time of changing the deal status to lost in UTC. Format: YYYY-MM-DD HH:MM:SS.
expected_close_date: Option<String>
The expected close date of the deal
label: Option<String>
The label or multiple labels assigned to the deal
Implementations§
Source§impl DealCollectionResponseObject
impl DealCollectionResponseObject
pub fn new() -> DealCollectionResponseObject
Trait Implementations§
Source§impl Clone for DealCollectionResponseObject
impl Clone for DealCollectionResponseObject
Source§fn clone(&self) -> DealCollectionResponseObject
fn clone(&self) -> DealCollectionResponseObject
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DealCollectionResponseObject
impl Debug for DealCollectionResponseObject
Source§impl<'de> Deserialize<'de> for DealCollectionResponseObject
impl<'de> Deserialize<'de> for DealCollectionResponseObject
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>,
Source§impl PartialEq for DealCollectionResponseObject
impl PartialEq for DealCollectionResponseObject
Source§fn eq(&self, other: &DealCollectionResponseObject) -> bool
fn eq(&self, other: &DealCollectionResponseObject) -> bool
self
and other
values to be equal, and is used by ==
.