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