pub struct UpdateEnrollmentStatusRequest {
pub include_member_accounts: Option<bool>,
pub status: String,
}Fields§
§include_member_accounts: Option<bool>Indicates whether to enroll member accounts of the organization if the your account is the master account of an organization.
status: StringThe new enrollment status of the account.
Accepted options are Active or Inactive. You will get an error if Pending or Failed are specified.
Trait Implementations§
Source§impl Clone for UpdateEnrollmentStatusRequest
impl Clone for UpdateEnrollmentStatusRequest
Source§fn clone(&self) -> UpdateEnrollmentStatusRequest
fn clone(&self) -> UpdateEnrollmentStatusRequest
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 UpdateEnrollmentStatusRequest
impl Default for UpdateEnrollmentStatusRequest
Source§fn default() -> UpdateEnrollmentStatusRequest
fn default() -> UpdateEnrollmentStatusRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateEnrollmentStatusRequest
impl PartialEq for UpdateEnrollmentStatusRequest
Source§fn eq(&self, other: &UpdateEnrollmentStatusRequest) -> bool
fn eq(&self, other: &UpdateEnrollmentStatusRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateEnrollmentStatusRequest
Auto Trait Implementations§
impl Freeze for UpdateEnrollmentStatusRequest
impl RefUnwindSafe for UpdateEnrollmentStatusRequest
impl Send for UpdateEnrollmentStatusRequest
impl Sync for UpdateEnrollmentStatusRequest
impl Unpin for UpdateEnrollmentStatusRequest
impl UnwindSafe for UpdateEnrollmentStatusRequest
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