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.GoogleAdsHomeservicesLocalservicesV1BookingLead (Total Keys: 7)
- schemas.GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport.properties.bookingLead.$ref (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Oct 19, 2021
1 parent fd2eeb8 commit 24da1cc
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
7 changes: 7 additions & 0 deletions docs/dyn/localservices_v1.detailedLeadReports.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ <h3>Method Details</h3>
&quot;aggregatorInfo&quot;: { # Conatiner for aggregator specific information if lead is for an aggregator GLS account. # Aggregator specific information related to the lead.
&quot;aggregatorProviderId&quot;: &quot;A String&quot;, # Provider id (listed in aggregator system) which maps to a account id in GLS system.
},
&quot;bookingLead&quot;: { # Container for booking lead specific information. # More information associated to only booking leads.
&quot;bookingAppointmentTimestamp&quot;: &quot;A String&quot;, # Timestamp of when service is provided by advertiser.
&quot;consumerEmail&quot;: &quot;A String&quot;, # Consumer email associated with the booking lead.
&quot;consumerPhoneNumber&quot;: &quot;A String&quot;, # Consumer phone number associated with the booking lead.
&quot;customerName&quot;: &quot;A String&quot;, # Name of the customer who created the lead.
&quot;jobType&quot;: &quot;A String&quot;, # The job type of the specified lead.
},
&quot;businessName&quot;: &quot;A String&quot;, # Business name associated to the account.
&quot;chargeStatus&quot;: &quot;A String&quot;, # Whether the lead has been charged.
&quot;currencyCode&quot;: &quot;A String&quot;, # Currency code.
Expand Down
40 changes: 37 additions & 3 deletions googleapiclient/discovery_cache/documents/localservices.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
}
}
},
"revision": "20211008",
"revision": "20211015",
"rootUrl": "https://localservices.googleapis.com/",
"schemas": {
"GoogleAdsHomeservicesLocalservicesV1AccountReport": {
Expand Down Expand Up @@ -353,6 +353,34 @@
},
"type": "object"
},
"GoogleAdsHomeservicesLocalservicesV1BookingLead": {
"description": "Container for booking lead specific information.",
"id": "GoogleAdsHomeservicesLocalservicesV1BookingLead",
"properties": {
"bookingAppointmentTimestamp": {
"description": "Timestamp of when service is provided by advertiser.",
"format": "google-datetime",
"type": "string"
},
"consumerEmail": {
"description": "Consumer email associated with the booking lead.",
"type": "string"
},
"consumerPhoneNumber": {
"description": "Consumer phone number associated with the booking lead.",
"type": "string"
},
"customerName": {
"description": "Name of the customer who created the lead.",
"type": "string"
},
"jobType": {
"description": "The job type of the specified lead.",
"type": "string"
}
},
"type": "object"
},
"GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport": {
"description": "A Detailed Lead Report of a lead identified by their lead id and contains consumer, account, monetization, and lead data.",
"id": "GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport",
Expand All @@ -366,6 +394,10 @@
"$ref": "GoogleAdsHomeservicesLocalservicesV1AggregatorInfo",
"description": "Aggregator specific information related to the lead."
},
"bookingLead": {
"$ref": "GoogleAdsHomeservicesLocalservicesV1BookingLead",
"description": "More information associated to only booking leads."
},
"businessName": {
"description": "Business name associated to the account.",
"type": "string"
Expand Down Expand Up @@ -420,12 +452,14 @@
"enum": [
"LEAD_TYPE_UNSPECIFIED",
"MESSAGE",
"PHONE_CALL"
"PHONE_CALL",
"BOOKING"
],
"enumDescriptions": [
"Not specified.",
"Message lead.",
"Phone call lead."
"Phone call lead.",
"Booking lead."
],
"type": "string"
},
Expand Down

0 comments on commit 24da1cc

Please sign in to comment.