pub struct RemoveIosAppRequest {
pub allow_missing: Option<bool>,
pub etag: Option<String>,
pub immediate: Option<bool>,
pub validate_only: Option<bool>,
}
Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- ios apps remove projects (request)
Fields§
§allow_missing: Option<bool>
If set to true, and the App is not found, the request will succeed but no action will be taken on the server.
etag: Option<String>
Checksum provided in the IosApp resource. If provided, this checksum ensures that the client has an up-to-date value before proceeding.
immediate: Option<bool>
Determines whether to immediately delete the IosApp. If set to true, the App is immediately deleted from the Project and cannot be restored to the Project. If not set, defaults to false, which means the App will be set to expire in 30 days. Within the 30 days, the App may be restored to the Project using UndeleteIosApp
validate_only: Option<bool>
If set to true, the request is only validated. The App will not be removed.
Trait Implementations§
Source§impl Clone for RemoveIosAppRequest
impl Clone for RemoveIosAppRequest
Source§fn clone(&self) -> RemoveIosAppRequest
fn clone(&self) -> RemoveIosAppRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RemoveIosAppRequest
impl Debug for RemoveIosAppRequest
Source§impl Default for RemoveIosAppRequest
impl Default for RemoveIosAppRequest
Source§fn default() -> RemoveIosAppRequest
fn default() -> RemoveIosAppRequest
Source§impl<'de> Deserialize<'de> for RemoveIosAppRequest
impl<'de> Deserialize<'de> for RemoveIosAppRequest
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>,
Source§impl Serialize for RemoveIosAppRequest
impl Serialize for RemoveIosAppRequest
impl RequestValue for RemoveIosAppRequest
Auto Trait Implementations§
impl Freeze for RemoveIosAppRequest
impl RefUnwindSafe for RemoveIosAppRequest
impl Send for RemoveIosAppRequest
impl Sync for RemoveIosAppRequest
impl Unpin for RemoveIosAppRequest
impl UnwindSafe for RemoveIosAppRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more