pub struct ProjectServiceAccountDeleteResponse {
pub object: String,
pub id: String,
pub deleted: bool,
}
Expand description
Represents the response object for deleting a project service account.
Fields§
§object: String
The object type, which is always organization.project.service_account.deleted
.
id: String
The ID of the deleted service account.
deleted: bool
Indicates if the service account was successfully deleted.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProjectServiceAccountDeleteResponse
impl<'de> Deserialize<'de> for ProjectServiceAccountDeleteResponse
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
Auto Trait Implementations§
impl Freeze for ProjectServiceAccountDeleteResponse
impl RefUnwindSafe for ProjectServiceAccountDeleteResponse
impl Send for ProjectServiceAccountDeleteResponse
impl Sync for ProjectServiceAccountDeleteResponse
impl Unpin for ProjectServiceAccountDeleteResponse
impl UnwindSafe for ProjectServiceAccountDeleteResponse
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