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