pub struct AppEdit {
pub expiry_time_seconds: Option<String>,
pub id: Option<String>,
}Expand description
Represents an edit of an app. An edit allows clients to make multiple changes before committing them in one operation.
§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).
- commit edits (response)
- get edits (response)
- insert edits (request|response)
- validate edits (response)
Fields§
§expiry_time_seconds: Option<String>The time at which the edit will expire and will be no longer valid for use in any subsequent API calls (encoded as seconds since the Epoch).
id: Option<String>The ID of the edit that can be used in subsequent API calls.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppEdit
impl<'de> Deserialize<'de> for AppEdit
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 RequestValue for AppEdit
impl ResponseResult for AppEdit
Auto Trait Implementations§
impl Freeze for AppEdit
impl RefUnwindSafe for AppEdit
impl Send for AppEdit
impl Sync for AppEdit
impl Unpin for AppEdit
impl UnwindSafe for AppEdit
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