pub struct OrganizationRelationshipWithCalculatedFields {
pub id: Option<i32>,
pub type: Option<String>,
pub rel_owner_org_id: Option<Box<RelationshipOrganizationInfoItem>>,
pub rel_linked_org_id: Option<Box<RelationshipOrganizationInfoItem>>,
pub add_time: Option<String>,
pub update_time: Option<String>,
pub active_flag: Option<String>,
pub calculated_type: Option<String>,
pub calculated_related_org_id: Option<i32>,
}Fields§
§id: Option<i32>The ID of the organization relationship
type: Option<String>The type of the relationship
rel_owner_org_id: Option<Box<RelationshipOrganizationInfoItem>>§rel_linked_org_id: Option<Box<RelationshipOrganizationInfoItem>>§add_time: Option<String>The creation date and time of the relationship
update_time: Option<String>The last updated date and time of the relationship
active_flag: Option<String>Whether the relationship is active or not
calculated_type: Option<String>The calculated type of the relationship with the linked organization
The ID of the linked organization
Implementations§
Trait Implementations§
Source§impl Clone for OrganizationRelationshipWithCalculatedFields
impl Clone for OrganizationRelationshipWithCalculatedFields
Source§fn clone(&self) -> OrganizationRelationshipWithCalculatedFields
fn clone(&self) -> OrganizationRelationshipWithCalculatedFields
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 OrganizationRelationshipWithCalculatedFields
impl<'de> Deserialize<'de> for OrganizationRelationshipWithCalculatedFields
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 OrganizationRelationshipWithCalculatedFields
impl PartialEq for OrganizationRelationshipWithCalculatedFields
Source§fn eq(&self, other: &OrganizationRelationshipWithCalculatedFields) -> bool
fn eq(&self, other: &OrganizationRelationshipWithCalculatedFields) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrganizationRelationshipWithCalculatedFields
Auto Trait Implementations§
impl Freeze for OrganizationRelationshipWithCalculatedFields
impl RefUnwindSafe for OrganizationRelationshipWithCalculatedFields
impl Send for OrganizationRelationshipWithCalculatedFields
impl Sync for OrganizationRelationshipWithCalculatedFields
impl Unpin for OrganizationRelationshipWithCalculatedFields
impl UnwindSafe for OrganizationRelationshipWithCalculatedFields
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