pub struct UpdateVerificationStatusRequestBody {
pub status: Option<VerificationStatus>,
pub external_reviewer_id: String,
pub rejection_reason_id: Option<String>,
pub verification_details: Option<Box<VerificationDetails>>,
}Expand description
UpdateVerificationStatusRequestBody : The updated values of the VerificationStatus field.
Fields§
§status: Option<VerificationStatus>§external_reviewer_id: StringThe identifier of the order’s regulated information reviewer.
rejection_reason_id: Option<String>The unique identifier of the rejection reason used for rejecting the order’s regulated information. Only required if the new status is rejected.
verification_details: Option<Box<VerificationDetails>>Implementations§
Source§impl UpdateVerificationStatusRequestBody
impl UpdateVerificationStatusRequestBody
Sourcepub fn new(external_reviewer_id: String) -> UpdateVerificationStatusRequestBody
pub fn new(external_reviewer_id: String) -> UpdateVerificationStatusRequestBody
The updated values of the VerificationStatus field.
Trait Implementations§
Source§impl Clone for UpdateVerificationStatusRequestBody
impl Clone for UpdateVerificationStatusRequestBody
Source§fn clone(&self) -> UpdateVerificationStatusRequestBody
fn clone(&self) -> UpdateVerificationStatusRequestBody
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 Default for UpdateVerificationStatusRequestBody
impl Default for UpdateVerificationStatusRequestBody
Source§fn default() -> UpdateVerificationStatusRequestBody
fn default() -> UpdateVerificationStatusRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateVerificationStatusRequestBody
impl<'de> Deserialize<'de> for UpdateVerificationStatusRequestBody
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 UpdateVerificationStatusRequestBody
impl PartialEq for UpdateVerificationStatusRequestBody
Source§fn eq(&self, other: &UpdateVerificationStatusRequestBody) -> bool
fn eq(&self, other: &UpdateVerificationStatusRequestBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateVerificationStatusRequestBody
Auto Trait Implementations§
impl Freeze for UpdateVerificationStatusRequestBody
impl RefUnwindSafe for UpdateVerificationStatusRequestBody
impl Send for UpdateVerificationStatusRequestBody
impl Sync for UpdateVerificationStatusRequestBody
impl Unpin for UpdateVerificationStatusRequestBody
impl UnsafeUnpin for UpdateVerificationStatusRequestBody
impl UnwindSafe for UpdateVerificationStatusRequestBody
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