pub struct AppUpdate {
pub active: Option<i64>,
pub app_id: Option<i64>,
pub app_markup_percentage: Option<String>,
pub appstore: Option<String>,
pub github: Option<String>,
pub googleplay: Option<String>,
pub homepage: Option<String>,
pub name: Option<String>,
pub redirect_uri: Option<String>,
pub scopes: Option<Vec<String>>,
pub verification_uri: Option<String>,
}
Expand description
Information of the updated application.
Fields§
§active: Option<i64>
Active.\n
app_id: Option<i64>
Application ID.\n
app_markup_percentage: Option<String>
Markup added to contract prices (as a percentage of contract payout).\n
appstore: Option<String>
Application’s App Store URL.\n
github: Option<String>
Application’s GitHub page (for open-source projects).\n
googleplay: Option<String>
Application’s Google Play URL.\n
homepage: Option<String>
Application’s homepage URL.\n
name: Option<String>
Application name.\n
redirect_uri: Option<String>
The URL to redirect to after a successful login.\n
scopes: Option<Vec<String>>
Scope Details.\n
verification_uri: Option<String>
Used when verify_email
called. If available, a URL containing the verification token will be sent to the client’s email, otherwise only the token will be sent.\n
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppUpdate
impl<'de> Deserialize<'de> for AppUpdate
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 AppUpdate
impl RefUnwindSafe for AppUpdate
impl Send for AppUpdate
impl Sync for AppUpdate
impl Unpin for AppUpdate
impl UnwindSafe for AppUpdate
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