docs: docs update (#911)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #<issue_number_goes_here> 🦕
diff --git a/docs/dyn/oauth2_v2.html b/docs/dyn/oauth2_v2.html
index d62a36e..12ea05a 100644
--- a/docs/dyn/oauth2_v2.html
+++ b/docs/dyn/oauth2_v2.html
@@ -115,13 +115,13 @@
An object of the form:
{
- "issued_to": "A String", # To whom was the token issued to. In general the same as audience.
- "user_id": "A String", # The obfuscated user id.
- "expires_in": 42, # The expiry time of the token, as number of seconds left until expiry.
- "audience": "A String", # Who is the intended audience for this token. In general the same as issued_to.
- "scope": "A String", # The space separated list of scopes granted to this token.
- "email": "A String", # The email address of the user. Present only if the email scope is present in the request.
- "verified_email": True or False, # Boolean flag which is true if the email address is verified. Present only if the email scope is present in the request.
+ "audience": "A String", # Who is the intended audience for this token. In general the same as issued_to.
+ "email": "A String", # The email address of the user. Present only if the email scope is present in the request.
+ "expires_in": 42, # The expiry time of the token, as number of seconds left until expiry.
+ "issued_to": "A String", # To whom was the token issued to. In general the same as audience.
+ "scope": "A String", # The space separated list of scopes granted to this token.
+ "user_id": "A String", # The obfuscated user id.
+ "verified_email": True or False, # Boolean flag which is true if the email address is verified. Present only if the email scope is present in the request.
}</pre>
</div>