pub struct Report {
pub files: Option<Vec<ReportFiles>>,
pub id: Option<String>,
pub is_report_ready: Option<bool>,
pub kind: Option<String>,
pub request: Option<ReportRequest>,
pub row_count: Option<i32>,
pub rows: Option<Vec<ReportRow>>,
pub statistics_currency_code: Option<String>,
pub statistics_time_zone: Option<String>,
}Expand description
A DoubleClick Search report. This object contains the report request, some report metadata such as currency code, and the generated report rows or report files.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- generate reports (response)
- get reports (response)
- get file reports (none)
- get id mapping file reports (none)
- request reports (response)
Fields§
§files: Option<Vec<ReportFiles>>Asynchronous report only. Contains a list of generated report files once the report has successfully completed.
id: Option<String>Asynchronous report only. Id of the report.
is_report_ready: Option<bool>Asynchronous report only. True if and only if the report has completed successfully and the report files are ready to be downloaded.
kind: Option<String>Identifies this as a Report resource. Value: the fixed string doubleclicksearch#report.
request: Option<ReportRequest>The request that created the report. Optional fields not specified in the original request are filled with default values.
row_count: Option<i32>The number of report rows generated by the report, not including headers.
rows: Option<Vec<ReportRow>>Synchronous report only. Generated report rows.
statistics_currency_code: Option<String>The currency code of all monetary values produced in the report, including values that are set by users (e.g., keyword bid settings) and metrics (e.g., cost and revenue). The currency code of a report is determined by the statisticsCurrency field of the report request.
statistics_time_zone: Option<String>If all statistics of the report are sourced from the same time zone, this would be it. Otherwise the field is unset.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
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>,
impl Resource for Report
impl ResponseResult for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more