pub struct FinancialReportingFinanceReportRunRunParameters {
pub columns: Option<Vec<String>>,
pub connected_account: Option<String>,
pub currency: Option<Currency>,
pub interval_end: Option<Timestamp>,
pub interval_start: Option<Timestamp>,
pub payout: Option<String>,
pub reporting_category: Option<String>,
pub timezone: Option<String>,
}
Fields§
§columns: Option<Vec<String>>
The set of output columns requested for inclusion in the report run.
connected_account: Option<String>
Connected account ID by which to filter the report run.
currency: Option<Currency>
Currency of objects to be included in the report run.
interval_end: Option<Timestamp>
Ending timestamp of data to be included in the report run.
Can be any UTC timestamp between 1 second after the user specified interval_start
and 1 second before this report’s last data_available_end
value.
interval_start: Option<Timestamp>
Starting timestamp of data to be included in the report run.
Can be any UTC timestamp between 1 second after this report’s data_available_start
and 1 second before the user specified interval_end
value.
payout: Option<String>
Payout ID by which to filter the report run.
reporting_category: Option<String>
Category of balance transactions to be included in the report run.
timezone: Option<String>
Defaults to Etc/UTC
.
The output timezone for all timestamps in the report.
A list of possible time zone values is maintained at the IANA Time Zone Database.
Has no effect on interval_start
or interval_end
.
Trait Implementations§
Source§impl Clone for FinancialReportingFinanceReportRunRunParameters
impl Clone for FinancialReportingFinanceReportRunRunParameters
Source§fn clone(&self) -> FinancialReportingFinanceReportRunRunParameters
fn clone(&self) -> FinancialReportingFinanceReportRunRunParameters
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more