Home | History | Annotate | Download | only in dyn
      1 <html><body>
      2 <style>
      3 
      4 body, h1, h2, h3, div, span, p, pre, a {
      5   margin: 0;
      6   padding: 0;
      7   border: 0;
      8   font-weight: inherit;
      9   font-style: inherit;
     10   font-size: 100%;
     11   font-family: inherit;
     12   vertical-align: baseline;
     13 }
     14 
     15 body {
     16   font-size: 13px;
     17   padding: 1em;
     18 }
     19 
     20 h1 {
     21   font-size: 26px;
     22   margin-bottom: 1em;
     23 }
     24 
     25 h2 {
     26   font-size: 24px;
     27   margin-bottom: 1em;
     28 }
     29 
     30 h3 {
     31   font-size: 20px;
     32   margin-bottom: 1em;
     33   margin-top: 1em;
     34 }
     35 
     36 pre, code {
     37   line-height: 1.5;
     38   font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
     39 }
     40 
     41 pre {
     42   margin-top: 0.5em;
     43 }
     44 
     45 h1, h2, h3, p {
     46   font-family: Arial, sans serif;
     47 }
     48 
     49 h1, h2, h3 {
     50   border-bottom: solid #CCC 1px;
     51 }
     52 
     53 .toc_element {
     54   margin-top: 0.5em;
     55 }
     56 
     57 .firstline {
     58   margin-left: 2 em;
     59 }
     60 
     61 .method  {
     62   margin-top: 1em;
     63   border: solid 1px #CCC;
     64   padding: 1em;
     65   background: #EEE;
     66 }
     67 
     68 .details {
     69   font-weight: bold;
     70   font-size: 14px;
     71 }
     72 
     73 </style>
     74 
     75 <h1><a href="dfareporting_v2_7.html">DCM/DFA Reporting And Trafficking API</a> . <a href="dfareporting_v2_7.reports.html">reports</a></h1>
     76 <h2>Instance Methods</h2>
     77 <p class="toc_element">
     78   <code><a href="dfareporting_v2_7.reports.compatibleFields.html">compatibleFields()</a></code>
     79 </p>
     80 <p class="firstline">Returns the compatibleFields Resource.</p>
     81 
     82 <p class="toc_element">
     83   <code><a href="dfareporting_v2_7.reports.files.html">files()</a></code>
     84 </p>
     85 <p class="firstline">Returns the files Resource.</p>
     86 
     87 <p class="toc_element">
     88   <code><a href="#delete">delete(profileId, reportId)</a></code></p>
     89 <p class="firstline">Deletes a report by its ID.</p>
     90 <p class="toc_element">
     91   <code><a href="#get">get(profileId, reportId)</a></code></p>
     92 <p class="firstline">Retrieves a report by its ID.</p>
     93 <p class="toc_element">
     94   <code><a href="#insert">insert(profileId, body)</a></code></p>
     95 <p class="firstline">Creates a report.</p>
     96 <p class="toc_element">
     97   <code><a href="#list">list(profileId, pageToken=None, maxResults=None, sortOrder=None, sortField=None, scope=None)</a></code></p>
     98 <p class="firstline">Retrieves list of reports.</p>
     99 <p class="toc_element">
    100   <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
    101 <p class="firstline">Retrieves the next page of results.</p>
    102 <p class="toc_element">
    103   <code><a href="#patch">patch(profileId, reportId, body)</a></code></p>
    104 <p class="firstline">Updates a report. This method supports patch semantics.</p>
    105 <p class="toc_element">
    106   <code><a href="#run">run(profileId, reportId, synchronous=None)</a></code></p>
    107 <p class="firstline">Runs a report.</p>
    108 <p class="toc_element">
    109   <code><a href="#update">update(profileId, reportId, body)</a></code></p>
    110 <p class="firstline">Updates a report.</p>
    111 <h3>Method Details</h3>
    112 <div class="method">
    113     <code class="details" id="delete">delete(profileId, reportId)</code>
    114   <pre>Deletes a report by its ID.
    115 
    116 Args:
    117   profileId: string, The DFA user profile ID. (required)
    118   reportId: string, The ID of the report. (required)
    119 </pre>
    120 </div>
    121 
    122 <div class="method">
    123     <code class="details" id="get">get(profileId, reportId)</code>
    124   <pre>Retrieves a report by its ID.
    125 
    126 Args:
    127   profileId: string, The DFA user profile ID. (required)
    128   reportId: string, The ID of the report. (required)
    129 
    130 Returns:
    131   An object of the form:
    132 
    133     { # Represents a Report resource.
    134       "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
    135         "conversionDimensions": [ # The list of conversion dimensions the report should include.
    136           { # Represents a sorted dimension.
    137             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    138             "name": "A String", # The name of the dimension.
    139             "sortOrder": "A String", # An optional sort order for the dimension column.
    140           },
    141         ],
    142         "metricNames": [ # The list of names of metrics the report should include.
    143           "A String",
    144         ],
    145         "dateRange": { # Represents a date range. # The date range this report should be run for.
    146           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    147           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    148           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    149           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    150         },
    151         "reportProperties": { # The properties of the report.
    152           "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
    153           "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
    154           "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
    155           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
    156           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
    157           "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
    158           "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
    159           "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
    160           "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
    161         },
    162         "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
    163           { # Represents a sorted dimension.
    164             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    165             "name": "A String", # The name of the dimension.
    166             "sortOrder": "A String", # An optional sort order for the dimension column.
    167           },
    168         ],
    169         "activityFilters": [ # The list of 'dfa:activity' values to filter on.
    170           { # Represents a DimensionValue resource.
    171             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    172             "value": "A String", # The value of the dimension.
    173             "dimensionName": "A String", # The name of the dimension.
    174             "etag": "A String", # The eTag of this response for caching purposes.
    175             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    176             "id": "A String", # The ID associated with the value if available.
    177           },
    178         ],
    179         "customRichMediaEvents": [ # The list of custom rich media events to include.
    180           { # Represents a DimensionValue resource.
    181             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    182             "value": "A String", # The value of the dimension.
    183             "dimensionName": "A String", # The name of the dimension.
    184             "etag": "A String", # The eTag of this response for caching purposes.
    185             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    186             "id": "A String", # The ID associated with the value if available.
    187           },
    188         ],
    189         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
    190           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    191           "value": "A String", # The value of the dimension.
    192           "dimensionName": "A String", # The name of the dimension.
    193           "etag": "A String", # The eTag of this response for caching purposes.
    194           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    195           "id": "A String", # The ID associated with the value if available.
    196         },
    197         "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
    198           { # Represents a sorted dimension.
    199             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    200             "name": "A String", # The name of the dimension.
    201             "sortOrder": "A String", # An optional sort order for the dimension column.
    202           },
    203         ],
    204       },
    205       "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
    206       "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
    207       "name": "A String", # The name of the report.
    208       "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
    209         "startDate": "A String", # Start date of date range for which scheduled reports should be run.
    210         "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
    211             # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
    212         "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
    213         "expirationDate": "A String", # The expiration date when the scheduled report stops running.
    214         "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
    215         "repeats": "A String", # The interval for which the report is repeated. Note:
    216             # - "DAILY" also requires field "every" to be set.
    217             # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
    218             # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
    219         "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
    220           "A String",
    221         ],
    222       },
    223       "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
    224       "ownerProfileId": "A String", # The user profile id of the owner of this report.
    225       "reachCriteria": { # The report criteria for a report of type "REACH".
    226         "activities": { # Represents an activity group. # Activity group.
    227           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
    228           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
    229             { # Represents a DimensionValue resource.
    230               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    231               "value": "A String", # The value of the dimension.
    232               "dimensionName": "A String", # The name of the dimension.
    233               "etag": "A String", # The eTag of this response for caching purposes.
    234               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    235               "id": "A String", # The ID associated with the value if available.
    236             },
    237           ],
    238           "metricNames": [ # List of names of floodlight activity metrics.
    239             "A String",
    240           ],
    241         },
    242         "dimensions": [ # The list of dimensions the report should include.
    243           { # Represents a sorted dimension.
    244             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    245             "name": "A String", # The name of the dimension.
    246             "sortOrder": "A String", # An optional sort order for the dimension column.
    247           },
    248         ],
    249         "metricNames": [ # The list of names of metrics the report should include.
    250           "A String",
    251         ],
    252         "dateRange": { # Represents a date range. # The date range this report should be run for.
    253           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    254           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    255           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    256           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    257         },
    258         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    259             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    260           { # Represents a DimensionValue resource.
    261             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    262             "value": "A String", # The value of the dimension.
    263             "dimensionName": "A String", # The name of the dimension.
    264             "etag": "A String", # The eTag of this response for caching purposes.
    265             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    266             "id": "A String", # The ID associated with the value if available.
    267           },
    268         ],
    269         "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
    270           "A String",
    271         ],
    272         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
    273           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
    274           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
    275             { # Represents a DimensionValue resource.
    276               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    277               "value": "A String", # The value of the dimension.
    278               "dimensionName": "A String", # The name of the dimension.
    279               "etag": "A String", # The eTag of this response for caching purposes.
    280               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    281               "id": "A String", # The ID associated with the value if available.
    282             },
    283           ],
    284         },
    285         "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
    286       },
    287       "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
    288         "dimensions": [ # The list of dimensions the report should include.
    289           { # Represents a sorted dimension.
    290             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    291             "name": "A String", # The name of the dimension.
    292             "sortOrder": "A String", # An optional sort order for the dimension column.
    293           },
    294         ],
    295         "metricNames": [ # The list of names of metrics the report should include.
    296           "A String",
    297         ],
    298         "dateRange": { # Represents a date range. # The date range this report should be run for.
    299           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    300           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    301           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    302           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    303         },
    304         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    305             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    306           { # Represents a DimensionValue resource.
    307             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    308             "value": "A String", # The value of the dimension.
    309             "dimensionName": "A String", # The name of the dimension.
    310             "etag": "A String", # The eTag of this response for caching purposes.
    311             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    312             "id": "A String", # The ID associated with the value if available.
    313           },
    314         ],
    315         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
    316           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    317           "value": "A String", # The value of the dimension.
    318           "dimensionName": "A String", # The name of the dimension.
    319           "etag": "A String", # The eTag of this response for caching purposes.
    320           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    321           "id": "A String", # The ID associated with the value if available.
    322         },
    323         "customRichMediaEvents": [ # The list of custom rich media events to include.
    324           { # Represents a DimensionValue resource.
    325             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    326             "value": "A String", # The value of the dimension.
    327             "dimensionName": "A String", # The name of the dimension.
    328             "etag": "A String", # The eTag of this response for caching purposes.
    329             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    330             "id": "A String", # The ID associated with the value if available.
    331           },
    332         ],
    333         "reportProperties": { # The properties of the report.
    334           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
    335           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
    336           "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
    337         },
    338       },
    339       "fileName": "A String", # The filename used when generating report files for this report.
    340       "delivery": { # The report's email delivery settings.
    341         "message": "A String", # The message to be sent with each email.
    342         "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
    343         "recipients": [ # The list of recipients to which to email the report.
    344           { # Represents a recipient.
    345             "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
    346             "deliveryType": "A String", # The delivery type for the recipient.
    347             "email": "A String", # The email address of the recipient.
    348           },
    349         ],
    350         "emailOwner": True or False, # Whether the report should be emailed to the report owner.
    351       },
    352       "etag": "A String", # The eTag of this response for caching purposes.
    353       "criteria": { # The report criteria for a report of type "STANDARD".
    354         "activities": { # Represents an activity group. # Activity group.
    355           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
    356           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
    357             { # Represents a DimensionValue resource.
    358               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    359               "value": "A String", # The value of the dimension.
    360               "dimensionName": "A String", # The name of the dimension.
    361               "etag": "A String", # The eTag of this response for caching purposes.
    362               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    363               "id": "A String", # The ID associated with the value if available.
    364             },
    365           ],
    366           "metricNames": [ # List of names of floodlight activity metrics.
    367             "A String",
    368           ],
    369         },
    370         "dimensions": [ # The list of standard dimensions the report should include.
    371           { # Represents a sorted dimension.
    372             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    373             "name": "A String", # The name of the dimension.
    374             "sortOrder": "A String", # An optional sort order for the dimension column.
    375           },
    376         ],
    377         "metricNames": [ # The list of names of metrics the report should include.
    378           "A String",
    379         ],
    380         "dateRange": { # Represents a date range. # The date range for which this report should be run.
    381           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    382           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    383           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    384           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    385         },
    386         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    387             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    388           { # Represents a DimensionValue resource.
    389             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    390             "value": "A String", # The value of the dimension.
    391             "dimensionName": "A String", # The name of the dimension.
    392             "etag": "A String", # The eTag of this response for caching purposes.
    393             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    394             "id": "A String", # The ID associated with the value if available.
    395           },
    396         ],
    397         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
    398           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
    399           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
    400             { # Represents a DimensionValue resource.
    401               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    402               "value": "A String", # The value of the dimension.
    403               "dimensionName": "A String", # The name of the dimension.
    404               "etag": "A String", # The eTag of this response for caching purposes.
    405               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    406               "id": "A String", # The ID associated with the value if available.
    407             },
    408           ],
    409         },
    410       },
    411       "id": "A String", # The unique ID identifying this report resource.
    412       "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
    413       "type": "A String", # The type of the report.
    414       "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
    415         "breakdown": [ # The list of dimensions the report should include.
    416           { # Represents a sorted dimension.
    417             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    418             "name": "A String", # The name of the dimension.
    419             "sortOrder": "A String", # An optional sort order for the dimension column.
    420           },
    421         ],
    422         "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
    423           "A String",
    424         ],
    425         "metricNames": [ # The list of names of metrics the report should include.
    426           "A String",
    427         ],
    428         "dateRange": { # Represents a date range. # The date range this report should be run for.
    429           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    430           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    431           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    432           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    433         },
    434         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    435           { # Represents a DimensionValue resource.
    436             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    437             "value": "A String", # The value of the dimension.
    438             "dimensionName": "A String", # The name of the dimension.
    439             "etag": "A String", # The eTag of this response for caching purposes.
    440             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    441             "id": "A String", # The ID associated with the value if available.
    442           },
    443         ],
    444         "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
    445         "dimension": "A String", # The dimension option.
    446       },
    447       "accountId": "A String", # The account ID to which this report belongs.
    448     }</pre>
    449 </div>
    450 
    451 <div class="method">
    452     <code class="details" id="insert">insert(profileId, body)</code>
    453   <pre>Creates a report.
    454 
    455 Args:
    456   profileId: string, The DFA user profile ID. (required)
    457   body: object, The request body. (required)
    458     The object takes the form of:
    459 
    460 { # Represents a Report resource.
    461     "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
    462       "conversionDimensions": [ # The list of conversion dimensions the report should include.
    463         { # Represents a sorted dimension.
    464           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    465           "name": "A String", # The name of the dimension.
    466           "sortOrder": "A String", # An optional sort order for the dimension column.
    467         },
    468       ],
    469       "metricNames": [ # The list of names of metrics the report should include.
    470         "A String",
    471       ],
    472       "dateRange": { # Represents a date range. # The date range this report should be run for.
    473         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    474         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    475         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    476         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    477       },
    478       "reportProperties": { # The properties of the report.
    479         "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
    480         "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
    481         "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
    482         "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
    483         "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
    484         "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
    485         "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
    486         "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
    487         "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
    488       },
    489       "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
    490         { # Represents a sorted dimension.
    491           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    492           "name": "A String", # The name of the dimension.
    493           "sortOrder": "A String", # An optional sort order for the dimension column.
    494         },
    495       ],
    496       "activityFilters": [ # The list of 'dfa:activity' values to filter on.
    497         { # Represents a DimensionValue resource.
    498           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    499           "value": "A String", # The value of the dimension.
    500           "dimensionName": "A String", # The name of the dimension.
    501           "etag": "A String", # The eTag of this response for caching purposes.
    502           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    503           "id": "A String", # The ID associated with the value if available.
    504         },
    505       ],
    506       "customRichMediaEvents": [ # The list of custom rich media events to include.
    507         { # Represents a DimensionValue resource.
    508           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    509           "value": "A String", # The value of the dimension.
    510           "dimensionName": "A String", # The name of the dimension.
    511           "etag": "A String", # The eTag of this response for caching purposes.
    512           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    513           "id": "A String", # The ID associated with the value if available.
    514         },
    515       ],
    516       "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
    517         "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    518         "value": "A String", # The value of the dimension.
    519         "dimensionName": "A String", # The name of the dimension.
    520         "etag": "A String", # The eTag of this response for caching purposes.
    521         "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    522         "id": "A String", # The ID associated with the value if available.
    523       },
    524       "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
    525         { # Represents a sorted dimension.
    526           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    527           "name": "A String", # The name of the dimension.
    528           "sortOrder": "A String", # An optional sort order for the dimension column.
    529         },
    530       ],
    531     },
    532     "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
    533     "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
    534     "name": "A String", # The name of the report.
    535     "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
    536       "startDate": "A String", # Start date of date range for which scheduled reports should be run.
    537       "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
    538           # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
    539       "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
    540       "expirationDate": "A String", # The expiration date when the scheduled report stops running.
    541       "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
    542       "repeats": "A String", # The interval for which the report is repeated. Note:
    543           # - "DAILY" also requires field "every" to be set.
    544           # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
    545           # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
    546       "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
    547         "A String",
    548       ],
    549     },
    550     "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
    551     "ownerProfileId": "A String", # The user profile id of the owner of this report.
    552     "reachCriteria": { # The report criteria for a report of type "REACH".
    553       "activities": { # Represents an activity group. # Activity group.
    554         "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
    555         "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
    556           { # Represents a DimensionValue resource.
    557             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    558             "value": "A String", # The value of the dimension.
    559             "dimensionName": "A String", # The name of the dimension.
    560             "etag": "A String", # The eTag of this response for caching purposes.
    561             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    562             "id": "A String", # The ID associated with the value if available.
    563           },
    564         ],
    565         "metricNames": [ # List of names of floodlight activity metrics.
    566           "A String",
    567         ],
    568       },
    569       "dimensions": [ # The list of dimensions the report should include.
    570         { # Represents a sorted dimension.
    571           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    572           "name": "A String", # The name of the dimension.
    573           "sortOrder": "A String", # An optional sort order for the dimension column.
    574         },
    575       ],
    576       "metricNames": [ # The list of names of metrics the report should include.
    577         "A String",
    578       ],
    579       "dateRange": { # Represents a date range. # The date range this report should be run for.
    580         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    581         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    582         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    583         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    584       },
    585       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    586           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    587         { # Represents a DimensionValue resource.
    588           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    589           "value": "A String", # The value of the dimension.
    590           "dimensionName": "A String", # The name of the dimension.
    591           "etag": "A String", # The eTag of this response for caching purposes.
    592           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    593           "id": "A String", # The ID associated with the value if available.
    594         },
    595       ],
    596       "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
    597         "A String",
    598       ],
    599       "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
    600         "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
    601         "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
    602           { # Represents a DimensionValue resource.
    603             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    604             "value": "A String", # The value of the dimension.
    605             "dimensionName": "A String", # The name of the dimension.
    606             "etag": "A String", # The eTag of this response for caching purposes.
    607             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    608             "id": "A String", # The ID associated with the value if available.
    609           },
    610         ],
    611       },
    612       "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
    613     },
    614     "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
    615       "dimensions": [ # The list of dimensions the report should include.
    616         { # Represents a sorted dimension.
    617           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    618           "name": "A String", # The name of the dimension.
    619           "sortOrder": "A String", # An optional sort order for the dimension column.
    620         },
    621       ],
    622       "metricNames": [ # The list of names of metrics the report should include.
    623         "A String",
    624       ],
    625       "dateRange": { # Represents a date range. # The date range this report should be run for.
    626         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    627         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    628         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    629         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    630       },
    631       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    632           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    633         { # Represents a DimensionValue resource.
    634           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    635           "value": "A String", # The value of the dimension.
    636           "dimensionName": "A String", # The name of the dimension.
    637           "etag": "A String", # The eTag of this response for caching purposes.
    638           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    639           "id": "A String", # The ID associated with the value if available.
    640         },
    641       ],
    642       "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
    643         "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    644         "value": "A String", # The value of the dimension.
    645         "dimensionName": "A String", # The name of the dimension.
    646         "etag": "A String", # The eTag of this response for caching purposes.
    647         "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    648         "id": "A String", # The ID associated with the value if available.
    649       },
    650       "customRichMediaEvents": [ # The list of custom rich media events to include.
    651         { # Represents a DimensionValue resource.
    652           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    653           "value": "A String", # The value of the dimension.
    654           "dimensionName": "A String", # The name of the dimension.
    655           "etag": "A String", # The eTag of this response for caching purposes.
    656           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    657           "id": "A String", # The ID associated with the value if available.
    658         },
    659       ],
    660       "reportProperties": { # The properties of the report.
    661         "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
    662         "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
    663         "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
    664       },
    665     },
    666     "fileName": "A String", # The filename used when generating report files for this report.
    667     "delivery": { # The report's email delivery settings.
    668       "message": "A String", # The message to be sent with each email.
    669       "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
    670       "recipients": [ # The list of recipients to which to email the report.
    671         { # Represents a recipient.
    672           "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
    673           "deliveryType": "A String", # The delivery type for the recipient.
    674           "email": "A String", # The email address of the recipient.
    675         },
    676       ],
    677       "emailOwner": True or False, # Whether the report should be emailed to the report owner.
    678     },
    679     "etag": "A String", # The eTag of this response for caching purposes.
    680     "criteria": { # The report criteria for a report of type "STANDARD".
    681       "activities": { # Represents an activity group. # Activity group.
    682         "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
    683         "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
    684           { # Represents a DimensionValue resource.
    685             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    686             "value": "A String", # The value of the dimension.
    687             "dimensionName": "A String", # The name of the dimension.
    688             "etag": "A String", # The eTag of this response for caching purposes.
    689             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    690             "id": "A String", # The ID associated with the value if available.
    691           },
    692         ],
    693         "metricNames": [ # List of names of floodlight activity metrics.
    694           "A String",
    695         ],
    696       },
    697       "dimensions": [ # The list of standard dimensions the report should include.
    698         { # Represents a sorted dimension.
    699           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    700           "name": "A String", # The name of the dimension.
    701           "sortOrder": "A String", # An optional sort order for the dimension column.
    702         },
    703       ],
    704       "metricNames": [ # The list of names of metrics the report should include.
    705         "A String",
    706       ],
    707       "dateRange": { # Represents a date range. # The date range for which this report should be run.
    708         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    709         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    710         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    711         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    712       },
    713       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    714           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    715         { # Represents a DimensionValue resource.
    716           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    717           "value": "A String", # The value of the dimension.
    718           "dimensionName": "A String", # The name of the dimension.
    719           "etag": "A String", # The eTag of this response for caching purposes.
    720           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    721           "id": "A String", # The ID associated with the value if available.
    722         },
    723       ],
    724       "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
    725         "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
    726         "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
    727           { # Represents a DimensionValue resource.
    728             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    729             "value": "A String", # The value of the dimension.
    730             "dimensionName": "A String", # The name of the dimension.
    731             "etag": "A String", # The eTag of this response for caching purposes.
    732             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    733             "id": "A String", # The ID associated with the value if available.
    734           },
    735         ],
    736       },
    737     },
    738     "id": "A String", # The unique ID identifying this report resource.
    739     "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
    740     "type": "A String", # The type of the report.
    741     "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
    742       "breakdown": [ # The list of dimensions the report should include.
    743         { # Represents a sorted dimension.
    744           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    745           "name": "A String", # The name of the dimension.
    746           "sortOrder": "A String", # An optional sort order for the dimension column.
    747         },
    748       ],
    749       "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
    750         "A String",
    751       ],
    752       "metricNames": [ # The list of names of metrics the report should include.
    753         "A String",
    754       ],
    755       "dateRange": { # Represents a date range. # The date range this report should be run for.
    756         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    757         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    758         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    759         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    760       },
    761       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    762         { # Represents a DimensionValue resource.
    763           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    764           "value": "A String", # The value of the dimension.
    765           "dimensionName": "A String", # The name of the dimension.
    766           "etag": "A String", # The eTag of this response for caching purposes.
    767           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    768           "id": "A String", # The ID associated with the value if available.
    769         },
    770       ],
    771       "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
    772       "dimension": "A String", # The dimension option.
    773     },
    774     "accountId": "A String", # The account ID to which this report belongs.
    775   }
    776 
    777 
    778 Returns:
    779   An object of the form:
    780 
    781     { # Represents a Report resource.
    782       "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
    783         "conversionDimensions": [ # The list of conversion dimensions the report should include.
    784           { # Represents a sorted dimension.
    785             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    786             "name": "A String", # The name of the dimension.
    787             "sortOrder": "A String", # An optional sort order for the dimension column.
    788           },
    789         ],
    790         "metricNames": [ # The list of names of metrics the report should include.
    791           "A String",
    792         ],
    793         "dateRange": { # Represents a date range. # The date range this report should be run for.
    794           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    795           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    796           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    797           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    798         },
    799         "reportProperties": { # The properties of the report.
    800           "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
    801           "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
    802           "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
    803           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
    804           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
    805           "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
    806           "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
    807           "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
    808           "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
    809         },
    810         "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
    811           { # Represents a sorted dimension.
    812             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    813             "name": "A String", # The name of the dimension.
    814             "sortOrder": "A String", # An optional sort order for the dimension column.
    815           },
    816         ],
    817         "activityFilters": [ # The list of 'dfa:activity' values to filter on.
    818           { # Represents a DimensionValue resource.
    819             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    820             "value": "A String", # The value of the dimension.
    821             "dimensionName": "A String", # The name of the dimension.
    822             "etag": "A String", # The eTag of this response for caching purposes.
    823             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    824             "id": "A String", # The ID associated with the value if available.
    825           },
    826         ],
    827         "customRichMediaEvents": [ # The list of custom rich media events to include.
    828           { # Represents a DimensionValue resource.
    829             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    830             "value": "A String", # The value of the dimension.
    831             "dimensionName": "A String", # The name of the dimension.
    832             "etag": "A String", # The eTag of this response for caching purposes.
    833             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    834             "id": "A String", # The ID associated with the value if available.
    835           },
    836         ],
    837         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
    838           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    839           "value": "A String", # The value of the dimension.
    840           "dimensionName": "A String", # The name of the dimension.
    841           "etag": "A String", # The eTag of this response for caching purposes.
    842           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    843           "id": "A String", # The ID associated with the value if available.
    844         },
    845         "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
    846           { # Represents a sorted dimension.
    847             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    848             "name": "A String", # The name of the dimension.
    849             "sortOrder": "A String", # An optional sort order for the dimension column.
    850           },
    851         ],
    852       },
    853       "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
    854       "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
    855       "name": "A String", # The name of the report.
    856       "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
    857         "startDate": "A String", # Start date of date range for which scheduled reports should be run.
    858         "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
    859             # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
    860         "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
    861         "expirationDate": "A String", # The expiration date when the scheduled report stops running.
    862         "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
    863         "repeats": "A String", # The interval for which the report is repeated. Note:
    864             # - "DAILY" also requires field "every" to be set.
    865             # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
    866             # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
    867         "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
    868           "A String",
    869         ],
    870       },
    871       "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
    872       "ownerProfileId": "A String", # The user profile id of the owner of this report.
    873       "reachCriteria": { # The report criteria for a report of type "REACH".
    874         "activities": { # Represents an activity group. # Activity group.
    875           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
    876           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
    877             { # Represents a DimensionValue resource.
    878               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    879               "value": "A String", # The value of the dimension.
    880               "dimensionName": "A String", # The name of the dimension.
    881               "etag": "A String", # The eTag of this response for caching purposes.
    882               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    883               "id": "A String", # The ID associated with the value if available.
    884             },
    885           ],
    886           "metricNames": [ # List of names of floodlight activity metrics.
    887             "A String",
    888           ],
    889         },
    890         "dimensions": [ # The list of dimensions the report should include.
    891           { # Represents a sorted dimension.
    892             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    893             "name": "A String", # The name of the dimension.
    894             "sortOrder": "A String", # An optional sort order for the dimension column.
    895           },
    896         ],
    897         "metricNames": [ # The list of names of metrics the report should include.
    898           "A String",
    899         ],
    900         "dateRange": { # Represents a date range. # The date range this report should be run for.
    901           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    902           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    903           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    904           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    905         },
    906         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    907             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    908           { # Represents a DimensionValue resource.
    909             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    910             "value": "A String", # The value of the dimension.
    911             "dimensionName": "A String", # The name of the dimension.
    912             "etag": "A String", # The eTag of this response for caching purposes.
    913             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    914             "id": "A String", # The ID associated with the value if available.
    915           },
    916         ],
    917         "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
    918           "A String",
    919         ],
    920         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
    921           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
    922           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
    923             { # Represents a DimensionValue resource.
    924               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    925               "value": "A String", # The value of the dimension.
    926               "dimensionName": "A String", # The name of the dimension.
    927               "etag": "A String", # The eTag of this response for caching purposes.
    928               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    929               "id": "A String", # The ID associated with the value if available.
    930             },
    931           ],
    932         },
    933         "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
    934       },
    935       "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
    936         "dimensions": [ # The list of dimensions the report should include.
    937           { # Represents a sorted dimension.
    938             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
    939             "name": "A String", # The name of the dimension.
    940             "sortOrder": "A String", # An optional sort order for the dimension column.
    941           },
    942         ],
    943         "metricNames": [ # The list of names of metrics the report should include.
    944           "A String",
    945         ],
    946         "dateRange": { # Represents a date range. # The date range this report should be run for.
    947           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    948           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
    949           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
    950           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
    951         },
    952         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
    953             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
    954           { # Represents a DimensionValue resource.
    955             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    956             "value": "A String", # The value of the dimension.
    957             "dimensionName": "A String", # The name of the dimension.
    958             "etag": "A String", # The eTag of this response for caching purposes.
    959             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    960             "id": "A String", # The ID associated with the value if available.
    961           },
    962         ],
    963         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
    964           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    965           "value": "A String", # The value of the dimension.
    966           "dimensionName": "A String", # The name of the dimension.
    967           "etag": "A String", # The eTag of this response for caching purposes.
    968           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    969           "id": "A String", # The ID associated with the value if available.
    970         },
    971         "customRichMediaEvents": [ # The list of custom rich media events to include.
    972           { # Represents a DimensionValue resource.
    973             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
    974             "value": "A String", # The value of the dimension.
    975             "dimensionName": "A String", # The name of the dimension.
    976             "etag": "A String", # The eTag of this response for caching purposes.
    977             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
    978             "id": "A String", # The ID associated with the value if available.
    979           },
    980         ],
    981         "reportProperties": { # The properties of the report.
    982           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
    983           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
    984           "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
    985         },
    986       },
    987       "fileName": "A String", # The filename used when generating report files for this report.
    988       "delivery": { # The report's email delivery settings.
    989         "message": "A String", # The message to be sent with each email.
    990         "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
    991         "recipients": [ # The list of recipients to which to email the report.
    992           { # Represents a recipient.
    993             "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
    994             "deliveryType": "A String", # The delivery type for the recipient.
    995             "email": "A String", # The email address of the recipient.
    996           },
    997         ],
    998         "emailOwner": True or False, # Whether the report should be emailed to the report owner.
    999       },
   1000       "etag": "A String", # The eTag of this response for caching purposes.
   1001       "criteria": { # The report criteria for a report of type "STANDARD".
   1002         "activities": { # Represents an activity group. # Activity group.
   1003           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   1004           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   1005             { # Represents a DimensionValue resource.
   1006               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1007               "value": "A String", # The value of the dimension.
   1008               "dimensionName": "A String", # The name of the dimension.
   1009               "etag": "A String", # The eTag of this response for caching purposes.
   1010               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1011               "id": "A String", # The ID associated with the value if available.
   1012             },
   1013           ],
   1014           "metricNames": [ # List of names of floodlight activity metrics.
   1015             "A String",
   1016           ],
   1017         },
   1018         "dimensions": [ # The list of standard dimensions the report should include.
   1019           { # Represents a sorted dimension.
   1020             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1021             "name": "A String", # The name of the dimension.
   1022             "sortOrder": "A String", # An optional sort order for the dimension column.
   1023           },
   1024         ],
   1025         "metricNames": [ # The list of names of metrics the report should include.
   1026           "A String",
   1027         ],
   1028         "dateRange": { # Represents a date range. # The date range for which this report should be run.
   1029           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1030           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1031           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1032           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1033         },
   1034         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1035             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1036           { # Represents a DimensionValue resource.
   1037             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1038             "value": "A String", # The value of the dimension.
   1039             "dimensionName": "A String", # The name of the dimension.
   1040             "etag": "A String", # The eTag of this response for caching purposes.
   1041             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1042             "id": "A String", # The ID associated with the value if available.
   1043           },
   1044         ],
   1045         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   1046           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   1047           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   1048             { # Represents a DimensionValue resource.
   1049               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1050               "value": "A String", # The value of the dimension.
   1051               "dimensionName": "A String", # The name of the dimension.
   1052               "etag": "A String", # The eTag of this response for caching purposes.
   1053               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1054               "id": "A String", # The ID associated with the value if available.
   1055             },
   1056           ],
   1057         },
   1058       },
   1059       "id": "A String", # The unique ID identifying this report resource.
   1060       "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
   1061       "type": "A String", # The type of the report.
   1062       "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
   1063         "breakdown": [ # The list of dimensions the report should include.
   1064           { # Represents a sorted dimension.
   1065             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1066             "name": "A String", # The name of the dimension.
   1067             "sortOrder": "A String", # An optional sort order for the dimension column.
   1068           },
   1069         ],
   1070         "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
   1071           "A String",
   1072         ],
   1073         "metricNames": [ # The list of names of metrics the report should include.
   1074           "A String",
   1075         ],
   1076         "dateRange": { # Represents a date range. # The date range this report should be run for.
   1077           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1078           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1079           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1080           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1081         },
   1082         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1083           { # Represents a DimensionValue resource.
   1084             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1085             "value": "A String", # The value of the dimension.
   1086             "dimensionName": "A String", # The name of the dimension.
   1087             "etag": "A String", # The eTag of this response for caching purposes.
   1088             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1089             "id": "A String", # The ID associated with the value if available.
   1090           },
   1091         ],
   1092         "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
   1093         "dimension": "A String", # The dimension option.
   1094       },
   1095       "accountId": "A String", # The account ID to which this report belongs.
   1096     }</pre>
   1097 </div>
   1098 
   1099 <div class="method">
   1100     <code class="details" id="list">list(profileId, pageToken=None, maxResults=None, sortOrder=None, sortField=None, scope=None)</code>
   1101   <pre>Retrieves list of reports.
   1102 
   1103 Args:
   1104   profileId: string, The DFA user profile ID. (required)
   1105   pageToken: string, The value of the nextToken from the previous result page.
   1106   maxResults: integer, Maximum number of results to return.
   1107   sortOrder: string, Order of sorted results.
   1108     Allowed values
   1109       ASCENDING - Ascending order.
   1110       DESCENDING - Descending order.
   1111   sortField: string, The field by which to sort the list.
   1112     Allowed values
   1113       ID - Sort by report ID.
   1114       LAST_MODIFIED_TIME - Sort by 'lastModifiedTime' field.
   1115       NAME - Sort by name of reports.
   1116   scope: string, The scope that defines which results are returned.
   1117     Allowed values
   1118       ALL - All reports in account.
   1119       MINE - My reports.
   1120 
   1121 Returns:
   1122   An object of the form:
   1123 
   1124     { # Represents the list of reports.
   1125     "nextPageToken": "A String", # Continuation token used to page through reports. To retrieve the next page of results, set the next request's "pageToken" to the value of this field. The page token is only valid for a limited amount of time and should not be persisted.
   1126     "items": [ # The reports returned in this response.
   1127       { # Represents a Report resource.
   1128           "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
   1129             "conversionDimensions": [ # The list of conversion dimensions the report should include.
   1130               { # Represents a sorted dimension.
   1131                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1132                 "name": "A String", # The name of the dimension.
   1133                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1134               },
   1135             ],
   1136             "metricNames": [ # The list of names of metrics the report should include.
   1137               "A String",
   1138             ],
   1139             "dateRange": { # Represents a date range. # The date range this report should be run for.
   1140               "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1141               "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1142               "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1143               "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1144             },
   1145             "reportProperties": { # The properties of the report.
   1146               "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   1147               "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
   1148               "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   1149               "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   1150               "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   1151               "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
   1152               "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
   1153               "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   1154               "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   1155             },
   1156             "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
   1157               { # Represents a sorted dimension.
   1158                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1159                 "name": "A String", # The name of the dimension.
   1160                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1161               },
   1162             ],
   1163             "activityFilters": [ # The list of 'dfa:activity' values to filter on.
   1164               { # Represents a DimensionValue resource.
   1165                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1166                 "value": "A String", # The value of the dimension.
   1167                 "dimensionName": "A String", # The name of the dimension.
   1168                 "etag": "A String", # The eTag of this response for caching purposes.
   1169                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1170                 "id": "A String", # The ID associated with the value if available.
   1171               },
   1172             ],
   1173             "customRichMediaEvents": [ # The list of custom rich media events to include.
   1174               { # Represents a DimensionValue resource.
   1175                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1176                 "value": "A String", # The value of the dimension.
   1177                 "dimensionName": "A String", # The name of the dimension.
   1178                 "etag": "A String", # The eTag of this response for caching purposes.
   1179                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1180                 "id": "A String", # The ID associated with the value if available.
   1181               },
   1182             ],
   1183             "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   1184               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1185               "value": "A String", # The value of the dimension.
   1186               "dimensionName": "A String", # The name of the dimension.
   1187               "etag": "A String", # The eTag of this response for caching purposes.
   1188               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1189               "id": "A String", # The ID associated with the value if available.
   1190             },
   1191             "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
   1192               { # Represents a sorted dimension.
   1193                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1194                 "name": "A String", # The name of the dimension.
   1195                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1196               },
   1197             ],
   1198           },
   1199           "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
   1200           "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
   1201           "name": "A String", # The name of the report.
   1202           "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
   1203             "startDate": "A String", # Start date of date range for which scheduled reports should be run.
   1204             "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
   1205                 # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
   1206             "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
   1207             "expirationDate": "A String", # The expiration date when the scheduled report stops running.
   1208             "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
   1209             "repeats": "A String", # The interval for which the report is repeated. Note:
   1210                 # - "DAILY" also requires field "every" to be set.
   1211                 # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
   1212                 # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
   1213             "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
   1214               "A String",
   1215             ],
   1216           },
   1217           "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
   1218           "ownerProfileId": "A String", # The user profile id of the owner of this report.
   1219           "reachCriteria": { # The report criteria for a report of type "REACH".
   1220             "activities": { # Represents an activity group. # Activity group.
   1221               "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   1222               "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   1223                 { # Represents a DimensionValue resource.
   1224                   "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1225                   "value": "A String", # The value of the dimension.
   1226                   "dimensionName": "A String", # The name of the dimension.
   1227                   "etag": "A String", # The eTag of this response for caching purposes.
   1228                   "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1229                   "id": "A String", # The ID associated with the value if available.
   1230                 },
   1231               ],
   1232               "metricNames": [ # List of names of floodlight activity metrics.
   1233                 "A String",
   1234               ],
   1235             },
   1236             "dimensions": [ # The list of dimensions the report should include.
   1237               { # Represents a sorted dimension.
   1238                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1239                 "name": "A String", # The name of the dimension.
   1240                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1241               },
   1242             ],
   1243             "metricNames": [ # The list of names of metrics the report should include.
   1244               "A String",
   1245             ],
   1246             "dateRange": { # Represents a date range. # The date range this report should be run for.
   1247               "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1248               "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1249               "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1250               "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1251             },
   1252             "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1253                 # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1254               { # Represents a DimensionValue resource.
   1255                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1256                 "value": "A String", # The value of the dimension.
   1257                 "dimensionName": "A String", # The name of the dimension.
   1258                 "etag": "A String", # The eTag of this response for caching purposes.
   1259                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1260                 "id": "A String", # The ID associated with the value if available.
   1261               },
   1262             ],
   1263             "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
   1264               "A String",
   1265             ],
   1266             "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   1267               "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   1268               "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   1269                 { # Represents a DimensionValue resource.
   1270                   "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1271                   "value": "A String", # The value of the dimension.
   1272                   "dimensionName": "A String", # The name of the dimension.
   1273                   "etag": "A String", # The eTag of this response for caching purposes.
   1274                   "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1275                   "id": "A String", # The ID associated with the value if available.
   1276                 },
   1277               ],
   1278             },
   1279             "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
   1280           },
   1281           "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
   1282             "dimensions": [ # The list of dimensions the report should include.
   1283               { # Represents a sorted dimension.
   1284                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1285                 "name": "A String", # The name of the dimension.
   1286                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1287               },
   1288             ],
   1289             "metricNames": [ # The list of names of metrics the report should include.
   1290               "A String",
   1291             ],
   1292             "dateRange": { # Represents a date range. # The date range this report should be run for.
   1293               "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1294               "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1295               "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1296               "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1297             },
   1298             "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1299                 # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1300               { # Represents a DimensionValue resource.
   1301                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1302                 "value": "A String", # The value of the dimension.
   1303                 "dimensionName": "A String", # The name of the dimension.
   1304                 "etag": "A String", # The eTag of this response for caching purposes.
   1305                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1306                 "id": "A String", # The ID associated with the value if available.
   1307               },
   1308             ],
   1309             "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   1310               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1311               "value": "A String", # The value of the dimension.
   1312               "dimensionName": "A String", # The name of the dimension.
   1313               "etag": "A String", # The eTag of this response for caching purposes.
   1314               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1315               "id": "A String", # The ID associated with the value if available.
   1316             },
   1317             "customRichMediaEvents": [ # The list of custom rich media events to include.
   1318               { # Represents a DimensionValue resource.
   1319                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1320                 "value": "A String", # The value of the dimension.
   1321                 "dimensionName": "A String", # The name of the dimension.
   1322                 "etag": "A String", # The eTag of this response for caching purposes.
   1323                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1324                 "id": "A String", # The ID associated with the value if available.
   1325               },
   1326             ],
   1327             "reportProperties": { # The properties of the report.
   1328               "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   1329               "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   1330               "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
   1331             },
   1332           },
   1333           "fileName": "A String", # The filename used when generating report files for this report.
   1334           "delivery": { # The report's email delivery settings.
   1335             "message": "A String", # The message to be sent with each email.
   1336             "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
   1337             "recipients": [ # The list of recipients to which to email the report.
   1338               { # Represents a recipient.
   1339                 "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
   1340                 "deliveryType": "A String", # The delivery type for the recipient.
   1341                 "email": "A String", # The email address of the recipient.
   1342               },
   1343             ],
   1344             "emailOwner": True or False, # Whether the report should be emailed to the report owner.
   1345           },
   1346           "etag": "A String", # The eTag of this response for caching purposes.
   1347           "criteria": { # The report criteria for a report of type "STANDARD".
   1348             "activities": { # Represents an activity group. # Activity group.
   1349               "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   1350               "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   1351                 { # Represents a DimensionValue resource.
   1352                   "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1353                   "value": "A String", # The value of the dimension.
   1354                   "dimensionName": "A String", # The name of the dimension.
   1355                   "etag": "A String", # The eTag of this response for caching purposes.
   1356                   "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1357                   "id": "A String", # The ID associated with the value if available.
   1358                 },
   1359               ],
   1360               "metricNames": [ # List of names of floodlight activity metrics.
   1361                 "A String",
   1362               ],
   1363             },
   1364             "dimensions": [ # The list of standard dimensions the report should include.
   1365               { # Represents a sorted dimension.
   1366                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1367                 "name": "A String", # The name of the dimension.
   1368                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1369               },
   1370             ],
   1371             "metricNames": [ # The list of names of metrics the report should include.
   1372               "A String",
   1373             ],
   1374             "dateRange": { # Represents a date range. # The date range for which this report should be run.
   1375               "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1376               "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1377               "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1378               "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1379             },
   1380             "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1381                 # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1382               { # Represents a DimensionValue resource.
   1383                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1384                 "value": "A String", # The value of the dimension.
   1385                 "dimensionName": "A String", # The name of the dimension.
   1386                 "etag": "A String", # The eTag of this response for caching purposes.
   1387                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1388                 "id": "A String", # The ID associated with the value if available.
   1389               },
   1390             ],
   1391             "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   1392               "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   1393               "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   1394                 { # Represents a DimensionValue resource.
   1395                   "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1396                   "value": "A String", # The value of the dimension.
   1397                   "dimensionName": "A String", # The name of the dimension.
   1398                   "etag": "A String", # The eTag of this response for caching purposes.
   1399                   "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1400                   "id": "A String", # The ID associated with the value if available.
   1401                 },
   1402               ],
   1403             },
   1404           },
   1405           "id": "A String", # The unique ID identifying this report resource.
   1406           "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
   1407           "type": "A String", # The type of the report.
   1408           "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
   1409             "breakdown": [ # The list of dimensions the report should include.
   1410               { # Represents a sorted dimension.
   1411                 "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1412                 "name": "A String", # The name of the dimension.
   1413                 "sortOrder": "A String", # An optional sort order for the dimension column.
   1414               },
   1415             ],
   1416             "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
   1417               "A String",
   1418             ],
   1419             "metricNames": [ # The list of names of metrics the report should include.
   1420               "A String",
   1421             ],
   1422             "dateRange": { # Represents a date range. # The date range this report should be run for.
   1423               "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1424               "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1425               "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1426               "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1427             },
   1428             "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1429               { # Represents a DimensionValue resource.
   1430                 "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1431                 "value": "A String", # The value of the dimension.
   1432                 "dimensionName": "A String", # The name of the dimension.
   1433                 "etag": "A String", # The eTag of this response for caching purposes.
   1434                 "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1435                 "id": "A String", # The ID associated with the value if available.
   1436               },
   1437             ],
   1438             "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
   1439             "dimension": "A String", # The dimension option.
   1440           },
   1441           "accountId": "A String", # The account ID to which this report belongs.
   1442         },
   1443     ],
   1444     "kind": "dfareporting#reportList", # The kind of list this is, in this case dfareporting#reportList.
   1445     "etag": "A String", # The eTag of this response for caching purposes.
   1446   }</pre>
   1447 </div>
   1448 
   1449 <div class="method">
   1450     <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
   1451   <pre>Retrieves the next page of results.
   1452 
   1453 Args:
   1454   previous_request: The request for the previous page. (required)
   1455   previous_response: The response from the request for the previous page. (required)
   1456 
   1457 Returns:
   1458   A request object that you can call 'execute()' on to request the next
   1459   page. Returns None if there are no more items in the collection.
   1460     </pre>
   1461 </div>
   1462 
   1463 <div class="method">
   1464     <code class="details" id="patch">patch(profileId, reportId, body)</code>
   1465   <pre>Updates a report. This method supports patch semantics.
   1466 
   1467 Args:
   1468   profileId: string, The DFA user profile ID. (required)
   1469   reportId: string, The ID of the report. (required)
   1470   body: object, The request body. (required)
   1471     The object takes the form of:
   1472 
   1473 { # Represents a Report resource.
   1474     "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
   1475       "conversionDimensions": [ # The list of conversion dimensions the report should include.
   1476         { # Represents a sorted dimension.
   1477           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1478           "name": "A String", # The name of the dimension.
   1479           "sortOrder": "A String", # An optional sort order for the dimension column.
   1480         },
   1481       ],
   1482       "metricNames": [ # The list of names of metrics the report should include.
   1483         "A String",
   1484       ],
   1485       "dateRange": { # Represents a date range. # The date range this report should be run for.
   1486         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1487         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1488         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1489         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1490       },
   1491       "reportProperties": { # The properties of the report.
   1492         "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   1493         "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
   1494         "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   1495         "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   1496         "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   1497         "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
   1498         "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
   1499         "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   1500         "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   1501       },
   1502       "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
   1503         { # Represents a sorted dimension.
   1504           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1505           "name": "A String", # The name of the dimension.
   1506           "sortOrder": "A String", # An optional sort order for the dimension column.
   1507         },
   1508       ],
   1509       "activityFilters": [ # The list of 'dfa:activity' values to filter on.
   1510         { # Represents a DimensionValue resource.
   1511           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1512           "value": "A String", # The value of the dimension.
   1513           "dimensionName": "A String", # The name of the dimension.
   1514           "etag": "A String", # The eTag of this response for caching purposes.
   1515           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1516           "id": "A String", # The ID associated with the value if available.
   1517         },
   1518       ],
   1519       "customRichMediaEvents": [ # The list of custom rich media events to include.
   1520         { # Represents a DimensionValue resource.
   1521           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1522           "value": "A String", # The value of the dimension.
   1523           "dimensionName": "A String", # The name of the dimension.
   1524           "etag": "A String", # The eTag of this response for caching purposes.
   1525           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1526           "id": "A String", # The ID associated with the value if available.
   1527         },
   1528       ],
   1529       "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   1530         "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1531         "value": "A String", # The value of the dimension.
   1532         "dimensionName": "A String", # The name of the dimension.
   1533         "etag": "A String", # The eTag of this response for caching purposes.
   1534         "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1535         "id": "A String", # The ID associated with the value if available.
   1536       },
   1537       "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
   1538         { # Represents a sorted dimension.
   1539           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1540           "name": "A String", # The name of the dimension.
   1541           "sortOrder": "A String", # An optional sort order for the dimension column.
   1542         },
   1543       ],
   1544     },
   1545     "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
   1546     "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
   1547     "name": "A String", # The name of the report.
   1548     "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
   1549       "startDate": "A String", # Start date of date range for which scheduled reports should be run.
   1550       "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
   1551           # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
   1552       "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
   1553       "expirationDate": "A String", # The expiration date when the scheduled report stops running.
   1554       "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
   1555       "repeats": "A String", # The interval for which the report is repeated. Note:
   1556           # - "DAILY" also requires field "every" to be set.
   1557           # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
   1558           # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
   1559       "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
   1560         "A String",
   1561       ],
   1562     },
   1563     "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
   1564     "ownerProfileId": "A String", # The user profile id of the owner of this report.
   1565     "reachCriteria": { # The report criteria for a report of type "REACH".
   1566       "activities": { # Represents an activity group. # Activity group.
   1567         "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   1568         "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   1569           { # Represents a DimensionValue resource.
   1570             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1571             "value": "A String", # The value of the dimension.
   1572             "dimensionName": "A String", # The name of the dimension.
   1573             "etag": "A String", # The eTag of this response for caching purposes.
   1574             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1575             "id": "A String", # The ID associated with the value if available.
   1576           },
   1577         ],
   1578         "metricNames": [ # List of names of floodlight activity metrics.
   1579           "A String",
   1580         ],
   1581       },
   1582       "dimensions": [ # The list of dimensions the report should include.
   1583         { # Represents a sorted dimension.
   1584           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1585           "name": "A String", # The name of the dimension.
   1586           "sortOrder": "A String", # An optional sort order for the dimension column.
   1587         },
   1588       ],
   1589       "metricNames": [ # The list of names of metrics the report should include.
   1590         "A String",
   1591       ],
   1592       "dateRange": { # Represents a date range. # The date range this report should be run for.
   1593         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1594         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1595         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1596         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1597       },
   1598       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1599           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1600         { # Represents a DimensionValue resource.
   1601           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1602           "value": "A String", # The value of the dimension.
   1603           "dimensionName": "A String", # The name of the dimension.
   1604           "etag": "A String", # The eTag of this response for caching purposes.
   1605           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1606           "id": "A String", # The ID associated with the value if available.
   1607         },
   1608       ],
   1609       "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
   1610         "A String",
   1611       ],
   1612       "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   1613         "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   1614         "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   1615           { # Represents a DimensionValue resource.
   1616             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1617             "value": "A String", # The value of the dimension.
   1618             "dimensionName": "A String", # The name of the dimension.
   1619             "etag": "A String", # The eTag of this response for caching purposes.
   1620             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1621             "id": "A String", # The ID associated with the value if available.
   1622           },
   1623         ],
   1624       },
   1625       "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
   1626     },
   1627     "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
   1628       "dimensions": [ # The list of dimensions the report should include.
   1629         { # Represents a sorted dimension.
   1630           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1631           "name": "A String", # The name of the dimension.
   1632           "sortOrder": "A String", # An optional sort order for the dimension column.
   1633         },
   1634       ],
   1635       "metricNames": [ # The list of names of metrics the report should include.
   1636         "A String",
   1637       ],
   1638       "dateRange": { # Represents a date range. # The date range this report should be run for.
   1639         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1640         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1641         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1642         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1643       },
   1644       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1645           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1646         { # Represents a DimensionValue resource.
   1647           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1648           "value": "A String", # The value of the dimension.
   1649           "dimensionName": "A String", # The name of the dimension.
   1650           "etag": "A String", # The eTag of this response for caching purposes.
   1651           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1652           "id": "A String", # The ID associated with the value if available.
   1653         },
   1654       ],
   1655       "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   1656         "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1657         "value": "A String", # The value of the dimension.
   1658         "dimensionName": "A String", # The name of the dimension.
   1659         "etag": "A String", # The eTag of this response for caching purposes.
   1660         "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1661         "id": "A String", # The ID associated with the value if available.
   1662       },
   1663       "customRichMediaEvents": [ # The list of custom rich media events to include.
   1664         { # Represents a DimensionValue resource.
   1665           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1666           "value": "A String", # The value of the dimension.
   1667           "dimensionName": "A String", # The name of the dimension.
   1668           "etag": "A String", # The eTag of this response for caching purposes.
   1669           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1670           "id": "A String", # The ID associated with the value if available.
   1671         },
   1672       ],
   1673       "reportProperties": { # The properties of the report.
   1674         "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   1675         "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   1676         "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
   1677       },
   1678     },
   1679     "fileName": "A String", # The filename used when generating report files for this report.
   1680     "delivery": { # The report's email delivery settings.
   1681       "message": "A String", # The message to be sent with each email.
   1682       "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
   1683       "recipients": [ # The list of recipients to which to email the report.
   1684         { # Represents a recipient.
   1685           "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
   1686           "deliveryType": "A String", # The delivery type for the recipient.
   1687           "email": "A String", # The email address of the recipient.
   1688         },
   1689       ],
   1690       "emailOwner": True or False, # Whether the report should be emailed to the report owner.
   1691     },
   1692     "etag": "A String", # The eTag of this response for caching purposes.
   1693     "criteria": { # The report criteria for a report of type "STANDARD".
   1694       "activities": { # Represents an activity group. # Activity group.
   1695         "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   1696         "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   1697           { # Represents a DimensionValue resource.
   1698             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1699             "value": "A String", # The value of the dimension.
   1700             "dimensionName": "A String", # The name of the dimension.
   1701             "etag": "A String", # The eTag of this response for caching purposes.
   1702             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1703             "id": "A String", # The ID associated with the value if available.
   1704           },
   1705         ],
   1706         "metricNames": [ # List of names of floodlight activity metrics.
   1707           "A String",
   1708         ],
   1709       },
   1710       "dimensions": [ # The list of standard dimensions the report should include.
   1711         { # Represents a sorted dimension.
   1712           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1713           "name": "A String", # The name of the dimension.
   1714           "sortOrder": "A String", # An optional sort order for the dimension column.
   1715         },
   1716       ],
   1717       "metricNames": [ # The list of names of metrics the report should include.
   1718         "A String",
   1719       ],
   1720       "dateRange": { # Represents a date range. # The date range for which this report should be run.
   1721         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1722         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1723         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1724         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1725       },
   1726       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1727           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1728         { # Represents a DimensionValue resource.
   1729           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1730           "value": "A String", # The value of the dimension.
   1731           "dimensionName": "A String", # The name of the dimension.
   1732           "etag": "A String", # The eTag of this response for caching purposes.
   1733           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1734           "id": "A String", # The ID associated with the value if available.
   1735         },
   1736       ],
   1737       "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   1738         "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   1739         "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   1740           { # Represents a DimensionValue resource.
   1741             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1742             "value": "A String", # The value of the dimension.
   1743             "dimensionName": "A String", # The name of the dimension.
   1744             "etag": "A String", # The eTag of this response for caching purposes.
   1745             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1746             "id": "A String", # The ID associated with the value if available.
   1747           },
   1748         ],
   1749       },
   1750     },
   1751     "id": "A String", # The unique ID identifying this report resource.
   1752     "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
   1753     "type": "A String", # The type of the report.
   1754     "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
   1755       "breakdown": [ # The list of dimensions the report should include.
   1756         { # Represents a sorted dimension.
   1757           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1758           "name": "A String", # The name of the dimension.
   1759           "sortOrder": "A String", # An optional sort order for the dimension column.
   1760         },
   1761       ],
   1762       "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
   1763         "A String",
   1764       ],
   1765       "metricNames": [ # The list of names of metrics the report should include.
   1766         "A String",
   1767       ],
   1768       "dateRange": { # Represents a date range. # The date range this report should be run for.
   1769         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1770         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1771         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1772         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1773       },
   1774       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1775         { # Represents a DimensionValue resource.
   1776           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1777           "value": "A String", # The value of the dimension.
   1778           "dimensionName": "A String", # The name of the dimension.
   1779           "etag": "A String", # The eTag of this response for caching purposes.
   1780           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1781           "id": "A String", # The ID associated with the value if available.
   1782         },
   1783       ],
   1784       "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
   1785       "dimension": "A String", # The dimension option.
   1786     },
   1787     "accountId": "A String", # The account ID to which this report belongs.
   1788   }
   1789 
   1790 
   1791 Returns:
   1792   An object of the form:
   1793 
   1794     { # Represents a Report resource.
   1795       "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
   1796         "conversionDimensions": [ # The list of conversion dimensions the report should include.
   1797           { # Represents a sorted dimension.
   1798             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1799             "name": "A String", # The name of the dimension.
   1800             "sortOrder": "A String", # An optional sort order for the dimension column.
   1801           },
   1802         ],
   1803         "metricNames": [ # The list of names of metrics the report should include.
   1804           "A String",
   1805         ],
   1806         "dateRange": { # Represents a date range. # The date range this report should be run for.
   1807           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1808           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1809           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1810           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1811         },
   1812         "reportProperties": { # The properties of the report.
   1813           "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   1814           "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
   1815           "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   1816           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   1817           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   1818           "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
   1819           "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
   1820           "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   1821           "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   1822         },
   1823         "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
   1824           { # Represents a sorted dimension.
   1825             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1826             "name": "A String", # The name of the dimension.
   1827             "sortOrder": "A String", # An optional sort order for the dimension column.
   1828           },
   1829         ],
   1830         "activityFilters": [ # The list of 'dfa:activity' values to filter on.
   1831           { # Represents a DimensionValue resource.
   1832             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1833             "value": "A String", # The value of the dimension.
   1834             "dimensionName": "A String", # The name of the dimension.
   1835             "etag": "A String", # The eTag of this response for caching purposes.
   1836             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1837             "id": "A String", # The ID associated with the value if available.
   1838           },
   1839         ],
   1840         "customRichMediaEvents": [ # The list of custom rich media events to include.
   1841           { # Represents a DimensionValue resource.
   1842             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1843             "value": "A String", # The value of the dimension.
   1844             "dimensionName": "A String", # The name of the dimension.
   1845             "etag": "A String", # The eTag of this response for caching purposes.
   1846             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1847             "id": "A String", # The ID associated with the value if available.
   1848           },
   1849         ],
   1850         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   1851           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1852           "value": "A String", # The value of the dimension.
   1853           "dimensionName": "A String", # The name of the dimension.
   1854           "etag": "A String", # The eTag of this response for caching purposes.
   1855           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1856           "id": "A String", # The ID associated with the value if available.
   1857         },
   1858         "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
   1859           { # Represents a sorted dimension.
   1860             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1861             "name": "A String", # The name of the dimension.
   1862             "sortOrder": "A String", # An optional sort order for the dimension column.
   1863           },
   1864         ],
   1865       },
   1866       "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
   1867       "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
   1868       "name": "A String", # The name of the report.
   1869       "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
   1870         "startDate": "A String", # Start date of date range for which scheduled reports should be run.
   1871         "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
   1872             # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
   1873         "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
   1874         "expirationDate": "A String", # The expiration date when the scheduled report stops running.
   1875         "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
   1876         "repeats": "A String", # The interval for which the report is repeated. Note:
   1877             # - "DAILY" also requires field "every" to be set.
   1878             # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
   1879             # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
   1880         "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
   1881           "A String",
   1882         ],
   1883       },
   1884       "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
   1885       "ownerProfileId": "A String", # The user profile id of the owner of this report.
   1886       "reachCriteria": { # The report criteria for a report of type "REACH".
   1887         "activities": { # Represents an activity group. # Activity group.
   1888           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   1889           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   1890             { # Represents a DimensionValue resource.
   1891               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1892               "value": "A String", # The value of the dimension.
   1893               "dimensionName": "A String", # The name of the dimension.
   1894               "etag": "A String", # The eTag of this response for caching purposes.
   1895               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1896               "id": "A String", # The ID associated with the value if available.
   1897             },
   1898           ],
   1899           "metricNames": [ # List of names of floodlight activity metrics.
   1900             "A String",
   1901           ],
   1902         },
   1903         "dimensions": [ # The list of dimensions the report should include.
   1904           { # Represents a sorted dimension.
   1905             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1906             "name": "A String", # The name of the dimension.
   1907             "sortOrder": "A String", # An optional sort order for the dimension column.
   1908           },
   1909         ],
   1910         "metricNames": [ # The list of names of metrics the report should include.
   1911           "A String",
   1912         ],
   1913         "dateRange": { # Represents a date range. # The date range this report should be run for.
   1914           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1915           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1916           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1917           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1918         },
   1919         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1920             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1921           { # Represents a DimensionValue resource.
   1922             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1923             "value": "A String", # The value of the dimension.
   1924             "dimensionName": "A String", # The name of the dimension.
   1925             "etag": "A String", # The eTag of this response for caching purposes.
   1926             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1927             "id": "A String", # The ID associated with the value if available.
   1928           },
   1929         ],
   1930         "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
   1931           "A String",
   1932         ],
   1933         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   1934           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   1935           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   1936             { # Represents a DimensionValue resource.
   1937               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1938               "value": "A String", # The value of the dimension.
   1939               "dimensionName": "A String", # The name of the dimension.
   1940               "etag": "A String", # The eTag of this response for caching purposes.
   1941               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1942               "id": "A String", # The ID associated with the value if available.
   1943             },
   1944           ],
   1945         },
   1946         "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
   1947       },
   1948       "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
   1949         "dimensions": [ # The list of dimensions the report should include.
   1950           { # Represents a sorted dimension.
   1951             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   1952             "name": "A String", # The name of the dimension.
   1953             "sortOrder": "A String", # An optional sort order for the dimension column.
   1954           },
   1955         ],
   1956         "metricNames": [ # The list of names of metrics the report should include.
   1957           "A String",
   1958         ],
   1959         "dateRange": { # Represents a date range. # The date range this report should be run for.
   1960           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1961           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   1962           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   1963           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   1964         },
   1965         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   1966             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   1967           { # Represents a DimensionValue resource.
   1968             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1969             "value": "A String", # The value of the dimension.
   1970             "dimensionName": "A String", # The name of the dimension.
   1971             "etag": "A String", # The eTag of this response for caching purposes.
   1972             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1973             "id": "A String", # The ID associated with the value if available.
   1974           },
   1975         ],
   1976         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   1977           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1978           "value": "A String", # The value of the dimension.
   1979           "dimensionName": "A String", # The name of the dimension.
   1980           "etag": "A String", # The eTag of this response for caching purposes.
   1981           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1982           "id": "A String", # The ID associated with the value if available.
   1983         },
   1984         "customRichMediaEvents": [ # The list of custom rich media events to include.
   1985           { # Represents a DimensionValue resource.
   1986             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   1987             "value": "A String", # The value of the dimension.
   1988             "dimensionName": "A String", # The name of the dimension.
   1989             "etag": "A String", # The eTag of this response for caching purposes.
   1990             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   1991             "id": "A String", # The ID associated with the value if available.
   1992           },
   1993         ],
   1994         "reportProperties": { # The properties of the report.
   1995           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   1996           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   1997           "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
   1998         },
   1999       },
   2000       "fileName": "A String", # The filename used when generating report files for this report.
   2001       "delivery": { # The report's email delivery settings.
   2002         "message": "A String", # The message to be sent with each email.
   2003         "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
   2004         "recipients": [ # The list of recipients to which to email the report.
   2005           { # Represents a recipient.
   2006             "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
   2007             "deliveryType": "A String", # The delivery type for the recipient.
   2008             "email": "A String", # The email address of the recipient.
   2009           },
   2010         ],
   2011         "emailOwner": True or False, # Whether the report should be emailed to the report owner.
   2012       },
   2013       "etag": "A String", # The eTag of this response for caching purposes.
   2014       "criteria": { # The report criteria for a report of type "STANDARD".
   2015         "activities": { # Represents an activity group. # Activity group.
   2016           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   2017           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   2018             { # Represents a DimensionValue resource.
   2019               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2020               "value": "A String", # The value of the dimension.
   2021               "dimensionName": "A String", # The name of the dimension.
   2022               "etag": "A String", # The eTag of this response for caching purposes.
   2023               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2024               "id": "A String", # The ID associated with the value if available.
   2025             },
   2026           ],
   2027           "metricNames": [ # List of names of floodlight activity metrics.
   2028             "A String",
   2029           ],
   2030         },
   2031         "dimensions": [ # The list of standard dimensions the report should include.
   2032           { # Represents a sorted dimension.
   2033             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2034             "name": "A String", # The name of the dimension.
   2035             "sortOrder": "A String", # An optional sort order for the dimension column.
   2036           },
   2037         ],
   2038         "metricNames": [ # The list of names of metrics the report should include.
   2039           "A String",
   2040         ],
   2041         "dateRange": { # Represents a date range. # The date range for which this report should be run.
   2042           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2043           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2044           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2045           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2046         },
   2047         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2048             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2049           { # Represents a DimensionValue resource.
   2050             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2051             "value": "A String", # The value of the dimension.
   2052             "dimensionName": "A String", # The name of the dimension.
   2053             "etag": "A String", # The eTag of this response for caching purposes.
   2054             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2055             "id": "A String", # The ID associated with the value if available.
   2056           },
   2057         ],
   2058         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   2059           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   2060           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   2061             { # Represents a DimensionValue resource.
   2062               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2063               "value": "A String", # The value of the dimension.
   2064               "dimensionName": "A String", # The name of the dimension.
   2065               "etag": "A String", # The eTag of this response for caching purposes.
   2066               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2067               "id": "A String", # The ID associated with the value if available.
   2068             },
   2069           ],
   2070         },
   2071       },
   2072       "id": "A String", # The unique ID identifying this report resource.
   2073       "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
   2074       "type": "A String", # The type of the report.
   2075       "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
   2076         "breakdown": [ # The list of dimensions the report should include.
   2077           { # Represents a sorted dimension.
   2078             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2079             "name": "A String", # The name of the dimension.
   2080             "sortOrder": "A String", # An optional sort order for the dimension column.
   2081           },
   2082         ],
   2083         "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
   2084           "A String",
   2085         ],
   2086         "metricNames": [ # The list of names of metrics the report should include.
   2087           "A String",
   2088         ],
   2089         "dateRange": { # Represents a date range. # The date range this report should be run for.
   2090           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2091           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2092           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2093           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2094         },
   2095         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2096           { # Represents a DimensionValue resource.
   2097             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2098             "value": "A String", # The value of the dimension.
   2099             "dimensionName": "A String", # The name of the dimension.
   2100             "etag": "A String", # The eTag of this response for caching purposes.
   2101             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2102             "id": "A String", # The ID associated with the value if available.
   2103           },
   2104         ],
   2105         "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
   2106         "dimension": "A String", # The dimension option.
   2107       },
   2108       "accountId": "A String", # The account ID to which this report belongs.
   2109     }</pre>
   2110 </div>
   2111 
   2112 <div class="method">
   2113     <code class="details" id="run">run(profileId, reportId, synchronous=None)</code>
   2114   <pre>Runs a report.
   2115 
   2116 Args:
   2117   profileId: string, The DFA profile ID. (required)
   2118   reportId: string, The ID of the report. (required)
   2119   synchronous: boolean, If set and true, tries to run the report synchronously.
   2120 
   2121 Returns:
   2122   An object of the form:
   2123 
   2124     { # 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".
   2125     "status": "A String", # The status of the report file.
   2126     "kind": "dfareporting#file", # The kind of resource this is, in this case dfareporting#file.
   2127     "format": "A String", # The output format of the report. Only available once the file is available.
   2128     "dateRange": { # Represents a date range. # 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.
   2129       "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2130       "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2131       "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2132       "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2133     },
   2134     "fileName": "A String", # The filename of the file.
   2135     "etag": "A String", # The eTag of this response for caching purposes.
   2136     "reportId": "A String", # The ID of the report this file was generated from.
   2137     "urls": { # The URLs where the completed report file can be downloaded.
   2138       "browserUrl": "A String", # The URL for downloading the report data through a browser.
   2139       "apiUrl": "A String", # The URL for downloading the report data through the API.
   2140     },
   2141     "lastModifiedTime": "A String", # The timestamp in milliseconds since epoch when this file was last modified.
   2142     "id": "A String", # The unique ID of this report file.
   2143   }</pre>
   2144 </div>
   2145 
   2146 <div class="method">
   2147     <code class="details" id="update">update(profileId, reportId, body)</code>
   2148   <pre>Updates a report.
   2149 
   2150 Args:
   2151   profileId: string, The DFA user profile ID. (required)
   2152   reportId: string, The ID of the report. (required)
   2153   body: object, The request body. (required)
   2154     The object takes the form of:
   2155 
   2156 { # Represents a Report resource.
   2157     "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
   2158       "conversionDimensions": [ # The list of conversion dimensions the report should include.
   2159         { # Represents a sorted dimension.
   2160           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2161           "name": "A String", # The name of the dimension.
   2162           "sortOrder": "A String", # An optional sort order for the dimension column.
   2163         },
   2164       ],
   2165       "metricNames": [ # The list of names of metrics the report should include.
   2166         "A String",
   2167       ],
   2168       "dateRange": { # Represents a date range. # The date range this report should be run for.
   2169         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2170         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2171         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2172         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2173       },
   2174       "reportProperties": { # The properties of the report.
   2175         "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   2176         "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
   2177         "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   2178         "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   2179         "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   2180         "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
   2181         "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
   2182         "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   2183         "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   2184       },
   2185       "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
   2186         { # Represents a sorted dimension.
   2187           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2188           "name": "A String", # The name of the dimension.
   2189           "sortOrder": "A String", # An optional sort order for the dimension column.
   2190         },
   2191       ],
   2192       "activityFilters": [ # The list of 'dfa:activity' values to filter on.
   2193         { # Represents a DimensionValue resource.
   2194           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2195           "value": "A String", # The value of the dimension.
   2196           "dimensionName": "A String", # The name of the dimension.
   2197           "etag": "A String", # The eTag of this response for caching purposes.
   2198           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2199           "id": "A String", # The ID associated with the value if available.
   2200         },
   2201       ],
   2202       "customRichMediaEvents": [ # The list of custom rich media events to include.
   2203         { # Represents a DimensionValue resource.
   2204           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2205           "value": "A String", # The value of the dimension.
   2206           "dimensionName": "A String", # The name of the dimension.
   2207           "etag": "A String", # The eTag of this response for caching purposes.
   2208           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2209           "id": "A String", # The ID associated with the value if available.
   2210         },
   2211       ],
   2212       "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   2213         "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2214         "value": "A String", # The value of the dimension.
   2215         "dimensionName": "A String", # The name of the dimension.
   2216         "etag": "A String", # The eTag of this response for caching purposes.
   2217         "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2218         "id": "A String", # The ID associated with the value if available.
   2219       },
   2220       "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
   2221         { # Represents a sorted dimension.
   2222           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2223           "name": "A String", # The name of the dimension.
   2224           "sortOrder": "A String", # An optional sort order for the dimension column.
   2225         },
   2226       ],
   2227     },
   2228     "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
   2229     "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
   2230     "name": "A String", # The name of the report.
   2231     "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
   2232       "startDate": "A String", # Start date of date range for which scheduled reports should be run.
   2233       "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
   2234           # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
   2235       "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
   2236       "expirationDate": "A String", # The expiration date when the scheduled report stops running.
   2237       "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
   2238       "repeats": "A String", # The interval for which the report is repeated. Note:
   2239           # - "DAILY" also requires field "every" to be set.
   2240           # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
   2241           # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
   2242       "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
   2243         "A String",
   2244       ],
   2245     },
   2246     "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
   2247     "ownerProfileId": "A String", # The user profile id of the owner of this report.
   2248     "reachCriteria": { # The report criteria for a report of type "REACH".
   2249       "activities": { # Represents an activity group. # Activity group.
   2250         "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   2251         "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   2252           { # Represents a DimensionValue resource.
   2253             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2254             "value": "A String", # The value of the dimension.
   2255             "dimensionName": "A String", # The name of the dimension.
   2256             "etag": "A String", # The eTag of this response for caching purposes.
   2257             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2258             "id": "A String", # The ID associated with the value if available.
   2259           },
   2260         ],
   2261         "metricNames": [ # List of names of floodlight activity metrics.
   2262           "A String",
   2263         ],
   2264       },
   2265       "dimensions": [ # The list of dimensions the report should include.
   2266         { # Represents a sorted dimension.
   2267           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2268           "name": "A String", # The name of the dimension.
   2269           "sortOrder": "A String", # An optional sort order for the dimension column.
   2270         },
   2271       ],
   2272       "metricNames": [ # The list of names of metrics the report should include.
   2273         "A String",
   2274       ],
   2275       "dateRange": { # Represents a date range. # The date range this report should be run for.
   2276         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2277         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2278         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2279         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2280       },
   2281       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2282           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2283         { # Represents a DimensionValue resource.
   2284           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2285           "value": "A String", # The value of the dimension.
   2286           "dimensionName": "A String", # The name of the dimension.
   2287           "etag": "A String", # The eTag of this response for caching purposes.
   2288           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2289           "id": "A String", # The ID associated with the value if available.
   2290         },
   2291       ],
   2292       "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
   2293         "A String",
   2294       ],
   2295       "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   2296         "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   2297         "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   2298           { # Represents a DimensionValue resource.
   2299             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2300             "value": "A String", # The value of the dimension.
   2301             "dimensionName": "A String", # The name of the dimension.
   2302             "etag": "A String", # The eTag of this response for caching purposes.
   2303             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2304             "id": "A String", # The ID associated with the value if available.
   2305           },
   2306         ],
   2307       },
   2308       "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
   2309     },
   2310     "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
   2311       "dimensions": [ # The list of dimensions the report should include.
   2312         { # Represents a sorted dimension.
   2313           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2314           "name": "A String", # The name of the dimension.
   2315           "sortOrder": "A String", # An optional sort order for the dimension column.
   2316         },
   2317       ],
   2318       "metricNames": [ # The list of names of metrics the report should include.
   2319         "A String",
   2320       ],
   2321       "dateRange": { # Represents a date range. # The date range this report should be run for.
   2322         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2323         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2324         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2325         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2326       },
   2327       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2328           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2329         { # Represents a DimensionValue resource.
   2330           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2331           "value": "A String", # The value of the dimension.
   2332           "dimensionName": "A String", # The name of the dimension.
   2333           "etag": "A String", # The eTag of this response for caching purposes.
   2334           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2335           "id": "A String", # The ID associated with the value if available.
   2336         },
   2337       ],
   2338       "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   2339         "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2340         "value": "A String", # The value of the dimension.
   2341         "dimensionName": "A String", # The name of the dimension.
   2342         "etag": "A String", # The eTag of this response for caching purposes.
   2343         "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2344         "id": "A String", # The ID associated with the value if available.
   2345       },
   2346       "customRichMediaEvents": [ # The list of custom rich media events to include.
   2347         { # Represents a DimensionValue resource.
   2348           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2349           "value": "A String", # The value of the dimension.
   2350           "dimensionName": "A String", # The name of the dimension.
   2351           "etag": "A String", # The eTag of this response for caching purposes.
   2352           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2353           "id": "A String", # The ID associated with the value if available.
   2354         },
   2355       ],
   2356       "reportProperties": { # The properties of the report.
   2357         "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   2358         "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   2359         "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
   2360       },
   2361     },
   2362     "fileName": "A String", # The filename used when generating report files for this report.
   2363     "delivery": { # The report's email delivery settings.
   2364       "message": "A String", # The message to be sent with each email.
   2365       "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
   2366       "recipients": [ # The list of recipients to which to email the report.
   2367         { # Represents a recipient.
   2368           "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
   2369           "deliveryType": "A String", # The delivery type for the recipient.
   2370           "email": "A String", # The email address of the recipient.
   2371         },
   2372       ],
   2373       "emailOwner": True or False, # Whether the report should be emailed to the report owner.
   2374     },
   2375     "etag": "A String", # The eTag of this response for caching purposes.
   2376     "criteria": { # The report criteria for a report of type "STANDARD".
   2377       "activities": { # Represents an activity group. # Activity group.
   2378         "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   2379         "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   2380           { # Represents a DimensionValue resource.
   2381             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2382             "value": "A String", # The value of the dimension.
   2383             "dimensionName": "A String", # The name of the dimension.
   2384             "etag": "A String", # The eTag of this response for caching purposes.
   2385             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2386             "id": "A String", # The ID associated with the value if available.
   2387           },
   2388         ],
   2389         "metricNames": [ # List of names of floodlight activity metrics.
   2390           "A String",
   2391         ],
   2392       },
   2393       "dimensions": [ # The list of standard dimensions the report should include.
   2394         { # Represents a sorted dimension.
   2395           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2396           "name": "A String", # The name of the dimension.
   2397           "sortOrder": "A String", # An optional sort order for the dimension column.
   2398         },
   2399       ],
   2400       "metricNames": [ # The list of names of metrics the report should include.
   2401         "A String",
   2402       ],
   2403       "dateRange": { # Represents a date range. # The date range for which this report should be run.
   2404         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2405         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2406         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2407         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2408       },
   2409       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2410           # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2411         { # Represents a DimensionValue resource.
   2412           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2413           "value": "A String", # The value of the dimension.
   2414           "dimensionName": "A String", # The name of the dimension.
   2415           "etag": "A String", # The eTag of this response for caching purposes.
   2416           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2417           "id": "A String", # The ID associated with the value if available.
   2418         },
   2419       ],
   2420       "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   2421         "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   2422         "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   2423           { # Represents a DimensionValue resource.
   2424             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2425             "value": "A String", # The value of the dimension.
   2426             "dimensionName": "A String", # The name of the dimension.
   2427             "etag": "A String", # The eTag of this response for caching purposes.
   2428             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2429             "id": "A String", # The ID associated with the value if available.
   2430           },
   2431         ],
   2432       },
   2433     },
   2434     "id": "A String", # The unique ID identifying this report resource.
   2435     "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
   2436     "type": "A String", # The type of the report.
   2437     "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
   2438       "breakdown": [ # The list of dimensions the report should include.
   2439         { # Represents a sorted dimension.
   2440           "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2441           "name": "A String", # The name of the dimension.
   2442           "sortOrder": "A String", # An optional sort order for the dimension column.
   2443         },
   2444       ],
   2445       "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
   2446         "A String",
   2447       ],
   2448       "metricNames": [ # The list of names of metrics the report should include.
   2449         "A String",
   2450       ],
   2451       "dateRange": { # Represents a date range. # The date range this report should be run for.
   2452         "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2453         "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2454         "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2455         "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2456       },
   2457       "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2458         { # Represents a DimensionValue resource.
   2459           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2460           "value": "A String", # The value of the dimension.
   2461           "dimensionName": "A String", # The name of the dimension.
   2462           "etag": "A String", # The eTag of this response for caching purposes.
   2463           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2464           "id": "A String", # The ID associated with the value if available.
   2465         },
   2466       ],
   2467       "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
   2468       "dimension": "A String", # The dimension option.
   2469     },
   2470     "accountId": "A String", # The account ID to which this report belongs.
   2471   }
   2472 
   2473 
   2474 Returns:
   2475   An object of the form:
   2476 
   2477     { # Represents a Report resource.
   2478       "pathToConversionCriteria": { # The report criteria for a report of type "PATH_TO_CONVERSION".
   2479         "conversionDimensions": [ # The list of conversion dimensions the report should include.
   2480           { # Represents a sorted dimension.
   2481             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2482             "name": "A String", # The name of the dimension.
   2483             "sortOrder": "A String", # An optional sort order for the dimension column.
   2484           },
   2485         ],
   2486         "metricNames": [ # The list of names of metrics the report should include.
   2487           "A String",
   2488         ],
   2489         "dateRange": { # Represents a date range. # The date range this report should be run for.
   2490           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2491           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2492           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2493           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2494         },
   2495         "reportProperties": { # The properties of the report.
   2496           "clicksLookbackWindow": 42, # DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   2497           "pivotOnInteractionPath": True or False, # Enable pivoting on interaction path.
   2498           "impressionsLookbackWindow": 42, # DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
   2499           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   2500           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   2501           "maximumInteractionGap": 42, # The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
   2502           "includeAttributedIPConversions": True or False, # Deprecated: has no effect.
   2503           "maximumClickInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   2504           "maximumImpressionInteractions": 42, # The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
   2505         },
   2506         "perInteractionDimensions": [ # The list of per interaction dimensions the report should include.
   2507           { # Represents a sorted dimension.
   2508             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2509             "name": "A String", # The name of the dimension.
   2510             "sortOrder": "A String", # An optional sort order for the dimension column.
   2511           },
   2512         ],
   2513         "activityFilters": [ # The list of 'dfa:activity' values to filter on.
   2514           { # Represents a DimensionValue resource.
   2515             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2516             "value": "A String", # The value of the dimension.
   2517             "dimensionName": "A String", # The name of the dimension.
   2518             "etag": "A String", # The eTag of this response for caching purposes.
   2519             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2520             "id": "A String", # The ID associated with the value if available.
   2521           },
   2522         ],
   2523         "customRichMediaEvents": [ # The list of custom rich media events to include.
   2524           { # Represents a DimensionValue resource.
   2525             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2526             "value": "A String", # The value of the dimension.
   2527             "dimensionName": "A String", # The name of the dimension.
   2528             "etag": "A String", # The eTag of this response for caching purposes.
   2529             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2530             "id": "A String", # The ID associated with the value if available.
   2531           },
   2532         ],
   2533         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   2534           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2535           "value": "A String", # The value of the dimension.
   2536           "dimensionName": "A String", # The name of the dimension.
   2537           "etag": "A String", # The eTag of this response for caching purposes.
   2538           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2539           "id": "A String", # The ID associated with the value if available.
   2540         },
   2541         "customFloodlightVariables": [ # The list of custom floodlight variables the report should include.
   2542           { # Represents a sorted dimension.
   2543             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2544             "name": "A String", # The name of the dimension.
   2545             "sortOrder": "A String", # An optional sort order for the dimension column.
   2546           },
   2547         ],
   2548       },
   2549       "kind": "dfareporting#report", # The kind of resource this is, in this case dfareporting#report.
   2550       "subAccountId": "A String", # The subaccount ID to which this report belongs if applicable.
   2551       "name": "A String", # The name of the report.
   2552       "schedule": { # The report's schedule. Can only be set if the report's 'dateRange' is a relative date range and the relative date range is not "TODAY".
   2553         "startDate": "A String", # Start date of date range for which scheduled reports should be run.
   2554         "runsOnDayOfMonth": "A String", # Enum to define for "MONTHLY" scheduled reports whether reports should be repeated on the same day of the month as "startDate" or the same day of the week of the month.
   2555             # Example: If 'startDate' is Monday, April 2nd 2012 (2012-04-02), "DAY_OF_MONTH" would run subsequent reports on the 2nd of every Month, and "WEEK_OF_MONTH" would run subsequent reports on the first Monday of the month.
   2556         "every": 42, # Defines every how many days, weeks or months the report should be run. Needs to be set when "repeats" is either "DAILY", "WEEKLY" or "MONTHLY".
   2557         "expirationDate": "A String", # The expiration date when the scheduled report stops running.
   2558         "active": True or False, # Whether the schedule is active or not. Must be set to either true or false.
   2559         "repeats": "A String", # The interval for which the report is repeated. Note:
   2560             # - "DAILY" also requires field "every" to be set.
   2561             # - "WEEKLY" also requires fields "every" and "repeatsOnWeekDays" to be set.
   2562             # - "MONTHLY" also requires fields "every" and "runsOnDayOfMonth" to be set.
   2563         "repeatsOnWeekDays": [ # List of week days "WEEKLY" on which scheduled reports should run.
   2564           "A String",
   2565         ],
   2566       },
   2567       "format": "A String", # The output format of the report. If not specified, default format is "CSV". Note that the actual format in the completed report file might differ if for instance the report's size exceeds the format's capabilities. "CSV" will then be the fallback format.
   2568       "ownerProfileId": "A String", # The user profile id of the owner of this report.
   2569       "reachCriteria": { # The report criteria for a report of type "REACH".
   2570         "activities": { # Represents an activity group. # Activity group.
   2571           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   2572           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   2573             { # Represents a DimensionValue resource.
   2574               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2575               "value": "A String", # The value of the dimension.
   2576               "dimensionName": "A String", # The name of the dimension.
   2577               "etag": "A String", # The eTag of this response for caching purposes.
   2578               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2579               "id": "A String", # The ID associated with the value if available.
   2580             },
   2581           ],
   2582           "metricNames": [ # List of names of floodlight activity metrics.
   2583             "A String",
   2584           ],
   2585         },
   2586         "dimensions": [ # The list of dimensions the report should include.
   2587           { # Represents a sorted dimension.
   2588             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2589             "name": "A String", # The name of the dimension.
   2590             "sortOrder": "A String", # An optional sort order for the dimension column.
   2591           },
   2592         ],
   2593         "metricNames": [ # The list of names of metrics the report should include.
   2594           "A String",
   2595         ],
   2596         "dateRange": { # Represents a date range. # The date range this report should be run for.
   2597           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2598           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2599           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2600           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2601         },
   2602         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2603             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2604           { # Represents a DimensionValue resource.
   2605             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2606             "value": "A String", # The value of the dimension.
   2607             "dimensionName": "A String", # The name of the dimension.
   2608             "etag": "A String", # The eTag of this response for caching purposes.
   2609             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2610             "id": "A String", # The ID associated with the value if available.
   2611           },
   2612         ],
   2613         "reachByFrequencyMetricNames": [ # The list of names of  Reach By Frequency metrics the report should include.
   2614           "A String",
   2615         ],
   2616         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   2617           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   2618           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   2619             { # Represents a DimensionValue resource.
   2620               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2621               "value": "A String", # The value of the dimension.
   2622               "dimensionName": "A String", # The name of the dimension.
   2623               "etag": "A String", # The eTag of this response for caching purposes.
   2624               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2625               "id": "A String", # The ID associated with the value if available.
   2626             },
   2627           ],
   2628         },
   2629         "enableAllDimensionCombinations": True or False, # Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last three months.
   2630       },
   2631       "floodlightCriteria": { # The report criteria for a report of type "FLOODLIGHT".
   2632         "dimensions": [ # The list of dimensions the report should include.
   2633           { # Represents a sorted dimension.
   2634             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2635             "name": "A String", # The name of the dimension.
   2636             "sortOrder": "A String", # An optional sort order for the dimension column.
   2637           },
   2638         ],
   2639         "metricNames": [ # The list of names of metrics the report should include.
   2640           "A String",
   2641         ],
   2642         "dateRange": { # Represents a date range. # The date range this report should be run for.
   2643           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2644           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2645           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2646           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2647         },
   2648         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2649             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2650           { # Represents a DimensionValue resource.
   2651             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2652             "value": "A String", # The value of the dimension.
   2653             "dimensionName": "A String", # The name of the dimension.
   2654             "etag": "A String", # The eTag of this response for caching purposes.
   2655             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2656             "id": "A String", # The ID associated with the value if available.
   2657           },
   2658         ],
   2659         "floodlightConfigId": { # Represents a DimensionValue resource. # The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.
   2660           "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2661           "value": "A String", # The value of the dimension.
   2662           "dimensionName": "A String", # The name of the dimension.
   2663           "etag": "A String", # The eTag of this response for caching purposes.
   2664           "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2665           "id": "A String", # The ID associated with the value if available.
   2666         },
   2667         "customRichMediaEvents": [ # The list of custom rich media events to include.
   2668           { # Represents a DimensionValue resource.
   2669             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2670             "value": "A String", # The value of the dimension.
   2671             "dimensionName": "A String", # The name of the dimension.
   2672             "etag": "A String", # The eTag of this response for caching purposes.
   2673             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2674             "id": "A String", # The ID associated with the value if available.
   2675           },
   2676         ],
   2677         "reportProperties": { # The properties of the report.
   2678           "includeUnattributedIPConversions": True or False, # Include conversions that have no associated cookies and no exposures. Its therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
   2679           "includeUnattributedCookieConversions": True or False, # Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
   2680           "includeAttributedIPConversions": True or False, # Include conversions that have no cookie, but do have an exposure path.
   2681         },
   2682       },
   2683       "fileName": "A String", # The filename used when generating report files for this report.
   2684       "delivery": { # The report's email delivery settings.
   2685         "message": "A String", # The message to be sent with each email.
   2686         "emailOwnerDeliveryType": "A String", # The type of delivery for the owner to receive, if enabled.
   2687         "recipients": [ # The list of recipients to which to email the report.
   2688           { # Represents a recipient.
   2689             "kind": "dfareporting#recipient", # The kind of resource this is, in this case dfareporting#recipient.
   2690             "deliveryType": "A String", # The delivery type for the recipient.
   2691             "email": "A String", # The email address of the recipient.
   2692           },
   2693         ],
   2694         "emailOwner": True or False, # Whether the report should be emailed to the report owner.
   2695       },
   2696       "etag": "A String", # The eTag of this response for caching purposes.
   2697       "criteria": { # The report criteria for a report of type "STANDARD".
   2698         "activities": { # Represents an activity group. # Activity group.
   2699           "kind": "dfareporting#activities", # The kind of resource this is, in this case dfareporting#activities.
   2700           "filters": [ # List of activity filters. The dimension values need to be all either of type "dfa:activity" or "dfa:activityGroup".
   2701             { # Represents a DimensionValue resource.
   2702               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2703               "value": "A String", # The value of the dimension.
   2704               "dimensionName": "A String", # The name of the dimension.
   2705               "etag": "A String", # The eTag of this response for caching purposes.
   2706               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2707               "id": "A String", # The ID associated with the value if available.
   2708             },
   2709           ],
   2710           "metricNames": [ # List of names of floodlight activity metrics.
   2711             "A String",
   2712           ],
   2713         },
   2714         "dimensions": [ # The list of standard dimensions the report should include.
   2715           { # Represents a sorted dimension.
   2716             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2717             "name": "A String", # The name of the dimension.
   2718             "sortOrder": "A String", # An optional sort order for the dimension column.
   2719           },
   2720         ],
   2721         "metricNames": [ # The list of names of metrics the report should include.
   2722           "A String",
   2723         ],
   2724         "dateRange": { # Represents a date range. # The date range for which this report should be run.
   2725           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2726           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2727           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2728           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2729         },
   2730         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2731             # Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.
   2732           { # Represents a DimensionValue resource.
   2733             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2734             "value": "A String", # The value of the dimension.
   2735             "dimensionName": "A String", # The name of the dimension.
   2736             "etag": "A String", # The eTag of this response for caching purposes.
   2737             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2738             "id": "A String", # The ID associated with the value if available.
   2739           },
   2740         ],
   2741         "customRichMediaEvents": { # Represents a Custom Rich Media Events group. # Custom Rich Media Events group.
   2742           "kind": "dfareporting#customRichMediaEvents", # The kind of resource this is, in this case dfareporting#customRichMediaEvents.
   2743           "filteredEventIds": [ # List of custom rich media event IDs. Dimension values must be all of type dfa:richMediaEventTypeIdAndName.
   2744             { # Represents a DimensionValue resource.
   2745               "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2746               "value": "A String", # The value of the dimension.
   2747               "dimensionName": "A String", # The name of the dimension.
   2748               "etag": "A String", # The eTag of this response for caching purposes.
   2749               "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2750               "id": "A String", # The ID associated with the value if available.
   2751             },
   2752           ],
   2753         },
   2754       },
   2755       "id": "A String", # The unique ID identifying this report resource.
   2756       "lastModifiedTime": "A String", # The timestamp (in milliseconds since epoch) of when this report was last modified.
   2757       "type": "A String", # The type of the report.
   2758       "crossDimensionReachCriteria": { # The report criteria for a report of type "CROSS_DIMENSION_REACH".
   2759         "breakdown": [ # The list of dimensions the report should include.
   2760           { # Represents a sorted dimension.
   2761             "kind": "dfareporting#sortedDimension", # The kind of resource this is, in this case dfareporting#sortedDimension.
   2762             "name": "A String", # The name of the dimension.
   2763             "sortOrder": "A String", # An optional sort order for the dimension column.
   2764           },
   2765         ],
   2766         "overlapMetricNames": [ # The list of names of overlap metrics the report should include.
   2767           "A String",
   2768         ],
   2769         "metricNames": [ # The list of names of metrics the report should include.
   2770           "A String",
   2771         ],
   2772         "dateRange": { # Represents a date range. # The date range this report should be run for.
   2773           "startDate": "A String", # The start date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2774           "kind": "dfareporting#dateRange", # The kind of resource this is, in this case dfareporting#dateRange.
   2775           "endDate": "A String", # The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd".
   2776           "relativeDateRange": "A String", # The date range relative to the date of when the report is run.
   2777         },
   2778         "dimensionFilters": [ # The list of filters on which dimensions are filtered.
   2779           { # Represents a DimensionValue resource.
   2780             "kind": "dfareporting#dimensionValue", # The kind of resource this is, in this case dfareporting#dimensionValue.
   2781             "value": "A String", # The value of the dimension.
   2782             "dimensionName": "A String", # The name of the dimension.
   2783             "etag": "A String", # The eTag of this response for caching purposes.
   2784             "matchType": "A String", # Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT.
   2785             "id": "A String", # The ID associated with the value if available.
   2786           },
   2787         ],
   2788         "pivoted": True or False, # Whether the report is pivoted or not. Defaults to true.
   2789         "dimension": "A String", # The dimension option.
   2790       },
   2791       "accountId": "A String", # The account ID to which this report belongs.
   2792     }</pre>
   2793 </div>
   2794 
   2795 </body></html>