stripe/model/
get_reporting_report_runs_response.rs1use serde::{Serialize, Deserialize};
2use super::ReportingReportRun;
3#[derive(Debug, Clone, Serialize, Deserialize, Default)]
5pub struct GetReportingReportRunsResponse {
6 pub data: Vec<ReportingReportRun>,
7 pub has_more: bool,
9 pub object: String,
11 pub url: String,
13}
14impl std::fmt::Display for GetReportingReportRunsResponse {
15 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
16 write!(f, "{}", serde_json::to_string(self).unwrap())
17 }
18}