Struct google_dfareporting3::File[][src]

pub struct File {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub format: Option<String>,
    pub date_range: Option<DateRange>,
    pub file_name: Option<String>,
    pub etag: Option<String>,
    pub report_id: Option<String>,
    pub urls: Option<FileUrls>,
    pub last_modified_time: Option<String>,
    pub id: Option<String>,
}

Represents a File resource. A file contains the metadata for a report run. It shows the status of the run and holds the URLs to the generated report data if the run is finished and the status is "REPORT_AVAILABLE".

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).

Fields

The status of the report file.

The kind of resource this is, in this case dfareporting#file.

The output format of the report. Only available once the file is available.

The date range for which the file has report data. The date range will always be the absolute date range for which the report is run.

The filename of the file.

The eTag of this response for caching purposes.

The ID of the report this file was generated from.

The URLs where the completed report file can be downloaded.

The timestamp in milliseconds since epoch when this file was last modified.

The unique ID of this report file.

Trait Implementations

impl Default for File
[src]

Returns the "default value" for a type. Read more

impl Clone for File
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for File
[src]

Formats the value using the given formatter. Read more

impl Resource for File
[src]

impl ResponseResult for File
[src]

Auto Trait Implementations

impl Send for File

impl Sync for File