pub struct AnalyticsLastUpdatedResponse {
pub doc_analytics_last_updated: NaiveDate,
pub pack_analytics_last_updated: NaiveDate,
pub pack_formula_analytics_last_updated: NaiveDate,
}
Expand description
Response representing the last day analytics were updated.
JSON schema
{
"description": "Response representing the last day analytics were
updated.",
"type": "object",
"required": [
"docAnalyticsLastUpdated",
"packAnalyticsLastUpdated",
"packFormulaAnalyticsLastUpdated"
],
"properties": {
"docAnalyticsLastUpdated": {
"description": "Date that doc analytics were last updated.",
"examples": [
"2022-05-01"
],
"type": "string",
"format": "date"
},
"packAnalyticsLastUpdated": {
"description": "Date that Pack analytics were last updated.",
"examples": [
"2022-05-01"
],
"type": "string",
"format": "date"
},
"packFormulaAnalyticsLastUpdated": {
"description": "Date that Pack formula analytics were last
updated.",
"examples": [
"2022-05-01"
],
"type": "string",
"format": "date"
}
},
"additionalProperties": false,
"x-schema-name": "AnalyticsLastUpdatedResponse"
}
Fields§
§doc_analytics_last_updated: NaiveDate
Date that doc analytics were last updated.
pack_analytics_last_updated: NaiveDate
Date that Pack analytics were last updated.
pack_formula_analytics_last_updated: NaiveDate
Date that Pack formula analytics were last updated.
Trait Implementations§
Source§impl Clone for AnalyticsLastUpdatedResponse
impl Clone for AnalyticsLastUpdatedResponse
Source§fn clone(&self) -> AnalyticsLastUpdatedResponse
fn clone(&self) -> AnalyticsLastUpdatedResponse
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 AnalyticsLastUpdatedResponse
impl Debug for AnalyticsLastUpdatedResponse
Source§impl<'de> Deserialize<'de> for AnalyticsLastUpdatedResponse
impl<'de> Deserialize<'de> for AnalyticsLastUpdatedResponse
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<&AnalyticsLastUpdatedResponse> for AnalyticsLastUpdatedResponse
impl From<&AnalyticsLastUpdatedResponse> for AnalyticsLastUpdatedResponse
Source§fn from(value: &AnalyticsLastUpdatedResponse) -> Self
fn from(value: &AnalyticsLastUpdatedResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AnalyticsLastUpdatedResponse
impl RefUnwindSafe for AnalyticsLastUpdatedResponse
impl Send for AnalyticsLastUpdatedResponse
impl Sync for AnalyticsLastUpdatedResponse
impl Unpin for AnalyticsLastUpdatedResponse
impl UnwindSafe for AnalyticsLastUpdatedResponse
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