Skip to content

Commit

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

The following keys were added:
- schemas.Verification.properties.announcement.description
- schemas.Verification.properties.announcement.type
- schemas.VerificationOption.properties.announcement.description
- schemas.VerificationOption.properties.announcement.type
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent 28f185b commit 98381ce
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
10 changes: 9 additions & 1 deletion discovery/mybusinessverifications-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
}
}
},
"revision": "20220817",
"revision": "20230201",
"rootUrl": "https://mybusinessverifications.googleapis.com/",
"schemas": {
"AddressVerificationData": {
Expand Down Expand Up @@ -516,6 +516,10 @@
"description": "A verification represents a verification attempt on a location.",
"id": "Verification",
"properties": {
"announcement": {
"description": "Optional. Response announcement set only if the method is VETTED_PARTNER.",
"type": "string"
},
"createTime": {
"description": "The timestamp when the verification is requested.",
"format": "google-datetime",
Expand Down Expand Up @@ -574,6 +578,10 @@
"$ref": "AddressVerificationData",
"description": "Set only if the method is MAIL."
},
"announcement": {
"description": "Set only if the method is VETTED_PARTNER.",
"type": "string"
},
"emailData": {
"$ref": "EmailVerificationData",
"description": "Set only if the method is EMAIL."
Expand Down
8 changes: 8 additions & 0 deletions src/apis/mybusinessverifications/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ export namespace mybusinessverifications_v1 {
* A verification represents a verification attempt on a location.
*/
export interface Schema$Verification {
/**
* Optional. Response announcement set only if the method is VETTED_PARTNER.
*/
announcement?: string | null;
/**
* The timestamp when the verification is requested.
*/
Expand All @@ -356,6 +360,10 @@ export namespace mybusinessverifications_v1 {
* Set only if the method is MAIL.
*/
addressData?: Schema$AddressVerificationData;
/**
* Set only if the method is VETTED_PARTNER.
*/
announcement?: string | null;
/**
* Set only if the method is EMAIL.
*/
Expand Down

0 comments on commit 98381ce

Please sign in to comment.