pub type Inbox = BasicListing<InboxData>;Expand description
Inbox
Aliased Type§
pub struct Inbox {
pub kind: Option<String>,
pub data: Listing<BasicThing<InboxData>>,
}Fields§
§kind: Option<String>An identifier that specifies the type of object that this is.
data: Listing<BasicThing<InboxData>>The data contained by this struct. This will vary depending on the type parameter because each endpoint returns different contents.