pub struct GetMeResponse {
pub app_id: i64,
pub name: String,
pub payment_processing_bot_username: String,
pub webhook_endpoint: Option<String>,
}Fields§
§app_id: i64Unique ID of the application.
name: StringName of the application.
payment_processing_bot_username: StringUsername of the payment processing bot.
webhook_endpoint: Option<String>Optional. Webhook endpoint for the application.
Trait Implementations§
Source§impl Debug for GetMeResponse
impl Debug for GetMeResponse
Source§impl<'de> Deserialize<'de> for GetMeResponse
impl<'de> Deserialize<'de> for GetMeResponse
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 GetMeResponse
impl RefUnwindSafe for GetMeResponse
impl Send for GetMeResponse
impl Sync for GetMeResponse
impl Unpin for GetMeResponse
impl UnwindSafe for GetMeResponse
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