pub struct PackAnalyticsCollection {
pub items: Vec<PackAnalyticsItem>,
pub next_page_link: Option<NextPageLink>,
pub next_page_token: Option<NextPageToken>,
}
Expand description
List of analytics for Coda Packs over a date range.
JSON schema
{
"description": "List of analytics for Coda Packs over a date range.",
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackAnalyticsItem"
}
},
"nextPageLink": {
"allOf": [
{
"$ref": "#/components/schemas/nextPageLink"
},
{
"examples": [
"https://coda.io/apis/v1/analytics/packs?pageToken=xyz"
],
"type": "string"
}
]
},
"nextPageToken": {
"$ref": "#/components/schemas/nextPageToken"
}
},
"additionalProperties": false,
"x-schema-name": "PackAnalyticsCollection"
}
Fields§
§items: Vec<PackAnalyticsItem>
§next_page_link: Option<NextPageLink>
§next_page_token: Option<NextPageToken>
Trait Implementations§
Source§impl Clone for PackAnalyticsCollection
impl Clone for PackAnalyticsCollection
Source§fn clone(&self) -> PackAnalyticsCollection
fn clone(&self) -> PackAnalyticsCollection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PackAnalyticsCollection
impl Debug for PackAnalyticsCollection
Source§impl<'de> Deserialize<'de> for PackAnalyticsCollection
impl<'de> Deserialize<'de> for PackAnalyticsCollection
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
Source§impl From<&PackAnalyticsCollection> for PackAnalyticsCollection
impl From<&PackAnalyticsCollection> for PackAnalyticsCollection
Source§fn from(value: &PackAnalyticsCollection) -> Self
fn from(value: &PackAnalyticsCollection) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackAnalyticsCollection
impl RefUnwindSafe for PackAnalyticsCollection
impl Send for PackAnalyticsCollection
impl Sync for PackAnalyticsCollection
impl Unpin for PackAnalyticsCollection
impl UnwindSafe for PackAnalyticsCollection
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