pub struct GetEnrollmentStatusResponse {
pub member_accounts_enrolled: Option<bool>,
pub status: Option<String>,
pub status_reason: Option<String>,
}
Fields§
§member_accounts_enrolled: Option<bool>
Confirms the enrollment status of member accounts within the organization, if the account is a master account of an organization.
status: Option<String>
The enrollment status of the account.
status_reason: Option<String>
The reason for the enrollment status of the account.
For example, an account might show a status of Pending
because member accounts of an organization require more time to be enrolled in the service.
Trait Implementations§
Source§impl Clone for GetEnrollmentStatusResponse
impl Clone for GetEnrollmentStatusResponse
Source§fn clone(&self) -> GetEnrollmentStatusResponse
fn clone(&self) -> GetEnrollmentStatusResponse
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 GetEnrollmentStatusResponse
impl Debug for GetEnrollmentStatusResponse
Source§impl Default for GetEnrollmentStatusResponse
impl Default for GetEnrollmentStatusResponse
Source§fn default() -> GetEnrollmentStatusResponse
fn default() -> GetEnrollmentStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetEnrollmentStatusResponse
impl<'de> Deserialize<'de> for GetEnrollmentStatusResponse
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 GetEnrollmentStatusResponse
Auto Trait Implementations§
impl Freeze for GetEnrollmentStatusResponse
impl RefUnwindSafe for GetEnrollmentStatusResponse
impl Send for GetEnrollmentStatusResponse
impl Sync for GetEnrollmentStatusResponse
impl Unpin for GetEnrollmentStatusResponse
impl UnwindSafe for GetEnrollmentStatusResponse
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