pub struct CaptableStakeholderPatch {
pub city: Option<Option<Value>>,
pub current_relationship: Option<Option<Value>>,
pub email: Option<Option<Value>>,
pub id: Option<String>,
pub institution_name: Option<Option<Value>>,
pub name: Option<Option<Value>>,
pub stakeholder_type: Option<Option<Value>>,
pub state: Option<Option<Value>>,
pub street_address: Option<Option<Value>>,
pub tax_id: Option<Option<Value>>,
pub zipcode: Option<Option<Value>>,
}Fields§
§city: Option<Option<Value>>§current_relationship: Option<Option<Value>>§email: Option<Option<Value>>§id: Option<String>ID is the stakeholder to update. It is the path segment: the URL is the addressing authority, and the org it is resolved in comes from the caller’s principal, so an id from another tenant is simply not found.
institution_name: Option<Option<Value>>§name: Option<Option<Value>>§stakeholder_type: Option<Option<Value>>§state: Option<Option<Value>>§street_address: Option<Option<Value>>§tax_id: Option<Option<Value>>§zipcode: Option<Option<Value>>Implementations§
Source§impl CaptableStakeholderPatch
impl CaptableStakeholderPatch
pub fn new() -> CaptableStakeholderPatch
Trait Implementations§
Source§impl Clone for CaptableStakeholderPatch
impl Clone for CaptableStakeholderPatch
Source§fn clone(&self) -> CaptableStakeholderPatch
fn clone(&self) -> CaptableStakeholderPatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CaptableStakeholderPatch
impl Debug for CaptableStakeholderPatch
Source§impl Default for CaptableStakeholderPatch
impl Default for CaptableStakeholderPatch
Source§fn default() -> CaptableStakeholderPatch
fn default() -> CaptableStakeholderPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CaptableStakeholderPatch
impl<'de> Deserialize<'de> for CaptableStakeholderPatch
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 CaptableStakeholderPatch
impl PartialEq for CaptableStakeholderPatch
Source§impl Serialize for CaptableStakeholderPatch
impl Serialize for CaptableStakeholderPatch
impl StructuralPartialEq for CaptableStakeholderPatch
Auto Trait Implementations§
impl Freeze for CaptableStakeholderPatch
impl RefUnwindSafe for CaptableStakeholderPatch
impl Send for CaptableStakeholderPatch
impl Sync for CaptableStakeholderPatch
impl Unpin for CaptableStakeholderPatch
impl UnsafeUnpin for CaptableStakeholderPatch
impl UnwindSafe for CaptableStakeholderPatch
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