pub struct DealOrganizationDataWithId {
pub name: Option<String>,
pub people_count: Option<i32>,
pub owner_id: Option<i32>,
pub address: Option<String>,
pub active_flag: Option<bool>,
pub cc_email: Option<String>,
pub value: Option<i32>,
}Fields§
§name: Option<String>The name of the organization associated with the deal
people_count: Option<i32>The number of people connected with the organization that is associated with the deal
owner_id: Option<i32>The ID of the owner of the organization that is associated with the deal
address: Option<String>The address of the organization that is associated with the deal
active_flag: Option<bool>Whether the associated organization is active or not
cc_email: Option<String>The BCC email of the organization associated with the deal
value: Option<i32>The ID of the organization associated with the deal
Implementations§
Source§impl DealOrganizationDataWithId
impl DealOrganizationDataWithId
pub fn new() -> DealOrganizationDataWithId
Trait Implementations§
Source§impl Clone for DealOrganizationDataWithId
impl Clone for DealOrganizationDataWithId
Source§fn clone(&self) -> DealOrganizationDataWithId
fn clone(&self) -> DealOrganizationDataWithId
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 Debug for DealOrganizationDataWithId
impl Debug for DealOrganizationDataWithId
Source§impl<'de> Deserialize<'de> for DealOrganizationDataWithId
impl<'de> Deserialize<'de> for DealOrganizationDataWithId
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
impl StructuralPartialEq for DealOrganizationDataWithId
Auto Trait Implementations§
impl Freeze for DealOrganizationDataWithId
impl RefUnwindSafe for DealOrganizationDataWithId
impl Send for DealOrganizationDataWithId
impl Sync for DealOrganizationDataWithId
impl Unpin for DealOrganizationDataWithId
impl UnwindSafe for DealOrganizationDataWithId
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