insta/
types.rs

1/// The [`PostPage`] type
2mod post_page;
3
4/// The [`AdditionalDataLoaded`] type
5mod additional_data_loaded;
6
7pub use self::{
8    additional_data_loaded::{
9        AdditionalDataLoaded,
10        MediaType,
11    },
12    post_page::PostPage,
13};
14
15/// The response for a login
16#[derive(Debug, serde::Deserialize)]
17pub struct LoginResponse {
18    /// Whether the user successfully logged in
19    pub authenticated: bool,
20
21    /// ?
22    pub status: String,
23
24    /// ?
25    pub user: bool,
26}