Skip to content

Commit

Permalink
feat(localservices): update the API
Browse files Browse the repository at this point in the history
#### localservices:v1

The following keys were added:
- schemas.GoogleAdsHomeservicesLocalservicesV1AccountReport.properties.impressionsLastTwoDays.description
- schemas.GoogleAdsHomeservicesLocalservicesV1AccountReport.properties.impressionsLastTwoDays.format
- schemas.GoogleAdsHomeservicesLocalservicesV1AccountReport.properties.impressionsLastTwoDays.type

The following keys were changed:
- schemas.GoogleAdsHomeservicesLocalservicesV1AccountReport.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 5, 2021
1 parent 203da3f commit e5b3c1b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions discovery/localservices-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@
}
}
},
"revision": "20210307",
"revision": "20210331",
"rootUrl": "https://localservices.googleapis.com/",
"schemas": {
"GoogleAdsHomeservicesLocalservicesV1AccountReport": {
"description": "An Account Report of a GLS account identified by their account id containing aggregate data gathered from a particular date range.",
"description": "An Account Report of a GLS account identified by their account id containing aggregate data gathered from a particular date range. Next ID: 18",
"id": "GoogleAdsHomeservicesLocalservicesV1AccountReport",
"properties": {
"accountId": {
Expand Down Expand Up @@ -304,6 +304,11 @@
"format": "double",
"type": "number"
},
"impressionsLastTwoDays": {
"description": "Number of impressions that customers have had in the past 2 days.",
"format": "int64",
"type": "string"
},
"phoneLeadResponsiveness": {
"description": "Phone lead responsiveness of the account for the past 90 days from current date. This is computed by taking the total number of connected calls from charged phone leads and dividing by the total number of calls received.",
"format": "double",
Expand Down
6 changes: 5 additions & 1 deletion src/apis/localservices/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export namespace localservices_v1 {
}

/**
* An Account Report of a GLS account identified by their account id containing aggregate data gathered from a particular date range.
* An Account Report of a GLS account identified by their account id containing aggregate data gathered from a particular date range. Next ID: 18
*/
export interface Schema$GoogleAdsHomeservicesLocalservicesV1AccountReport {
/**
Expand Down Expand Up @@ -171,6 +171,10 @@ export namespace localservices_v1 {
* Total cost of the account in current specified period in the account's specified currency.
*/
currentPeriodTotalCost?: number | null;
/**
* Number of impressions that customers have had in the past 2 days.
*/
impressionsLastTwoDays?: string | null;
/**
* Phone lead responsiveness of the account for the past 90 days from current date. This is computed by taking the total number of connected calls from charged phone leads and dividing by the total number of calls received.
*/
Expand Down

0 comments on commit e5b3c1b

Please sign in to comment.