pub struct AppEdit {
pub expiry_time_seconds: Option<String>,
pub id: Option<String>,
}Expand description
An app edit. The resource for EditsService.
§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>Output only. The time (as seconds since Epoch) at which the edit will expire and will be no longer valid for use.
id: Option<String>Output only. Identifier of the edit. 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