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.type (Total Keys: 1)
- schemas.VerificationOption.properties.announcement.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 31, 2023
1 parent 82639b5 commit 9f4bdd4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/dyn/mybusinessverifications_v1.locations.html
Expand Up @@ -161,6 +161,7 @@ <h3>Method Details</h3>
&quot;business&quot;: &quot;A String&quot;, # Merchant&#x27;s business name.
&quot;expectedDeliveryDaysRegion&quot;: 42, # Expected number of days it takes to deliver a postcard to the address&#x27;s region.
},
&quot;announcement&quot;: &quot;A String&quot;, # Set only if the method is VETTED_PARTNER.
&quot;emailData&quot;: { # Display data for verifications through email. # Set only if the method is EMAIL.
&quot;domain&quot;: &quot;A String&quot;, # Domain name in the email address. e.g. &quot;gmail.com&quot; in foo@gmail.com
&quot;isUserNameEditable&quot;: True or False, # Whether client is allowed to provide a different user name.
Expand Down Expand Up @@ -252,6 +253,7 @@ <h3>Method Details</h3>

{ # Response message for Verifications.VerifyLocation.
&quot;verification&quot;: { # A verification represents a verification attempt on a location. # The created verification request.
&quot;announcement&quot;: &quot;A String&quot;, # Optional. Response announcement set only if the method is VETTED_PARTNER.
&quot;createTime&quot;: &quot;A String&quot;, # The timestamp when the verification is requested.
&quot;method&quot;: &quot;A String&quot;, # The method of the verification.
&quot;name&quot;: &quot;A String&quot;, # Resource name of the verification.
Expand Down
Expand Up @@ -115,6 +115,7 @@ <h3>Method Details</h3>

{ # Response message for Verifications.CompleteVerificationAction.
&quot;verification&quot;: { # A verification represents a verification attempt on a location. # The completed verification.
&quot;announcement&quot;: &quot;A String&quot;, # Optional. Response announcement set only if the method is VETTED_PARTNER.
&quot;createTime&quot;: &quot;A String&quot;, # The timestamp when the verification is requested.
&quot;method&quot;: &quot;A String&quot;, # The method of the verification.
&quot;name&quot;: &quot;A String&quot;, # Resource name of the verification.
Expand Down Expand Up @@ -143,6 +144,7 @@ <h3>Method Details</h3>
&quot;nextPageToken&quot;: &quot;A String&quot;, # If the number of verifications exceeded the requested page size, this field will be populated with a token to fetch the next page of verification on a subsequent call. If there are no more attributes, this field will not be present in the response.
&quot;verifications&quot;: [ # List of the verifications.
{ # A verification represents a verification attempt on a location.
&quot;announcement&quot;: &quot;A String&quot;, # Optional. Response announcement set only if the method is VETTED_PARTNER.
&quot;createTime&quot;: &quot;A String&quot;, # The timestamp when the verification is requested.
&quot;method&quot;: &quot;A String&quot;, # The method of the verification.
&quot;name&quot;: &quot;A String&quot;, # Resource name of the verification.
Expand Down
Expand Up @@ -256,7 +256,7 @@
}
}
},
"revision": "20230122",
"revision": "20230129",
"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

0 comments on commit 9f4bdd4

Please sign in to comment.