Clean and regen docs (#401)
diff --git a/docs/dyn/partners_v2.users.html b/docs/dyn/partners_v2.users.html
index cd7bb00..ef4428f 100644
--- a/docs/dyn/partners_v2.users.html
+++ b/docs/dyn/partners_v2.users.html
@@ -100,7 +100,7 @@
{ # A CompanyRelation resource representing information about a user's
# affiliation and standing with a company in Partners.
"website": "A String", # The website URL for this company.
- "managerAccount": "A String", # The AdWords manager account # associated this company.
+ "primaryCountryCode": "A String", # The primary country code of the company.
"specializationStatus": [ # The list of Google Partners specialization statuses for the company.
{ # Agency specialization status
"badgeSpecialization": "A String", # The specialization this status is for.
@@ -110,6 +110,65 @@
"companyId": "A String", # The ID of the company. There may be no id if this is a
# pending company.5
"isPending": True or False, # The flag that indicates if the company is pending verification.
+ "primaryAddress": { # A location with address and geographic coordinates. May optionally contain a # The primary location of the company.
+ # detailed (multi-field) version of the address.
+ "languageCode": "A String", # Language code of the address. Should be in BCP 47 format.
+ "addressLine": [ # The following address lines represent the most specific part of any
+ # address.
+ "A String",
+ ],
+ "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+ # neighborhoods or boroughs in other locations.
+ "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
+ # classification code for sorting mail.
+ "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
+ # of doubles representing degrees latitude and degrees longitude. Unless
+ # specified otherwise, this must conform to the
+ # <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
+ # standard</a>. Values must be within normalized ranges.
+ #
+ # Example of normalization code in Python:
+ #
+ # def NormalizeLongitude(longitude):
+ # """Wraps decimal degrees longitude to [-180.0, 180.0]."""
+ # q, r = divmod(longitude, 360.0)
+ # if r > 180.0 or (r == 180.0 and q <= -1.0):
+ # return r - 360.0
+ # return r
+ #
+ # def NormalizeLatLng(latitude, longitude):
+ # """Wraps decimal degrees latitude and longitude to
+ # [-90.0, 90.0] and [-180.0, 180.0], respectively."""
+ # r = latitude % 360.0
+ # if r <= 90.0:
+ # return r, NormalizeLongitude(longitude)
+ # elif r >= 270.0:
+ # return r - 360, NormalizeLongitude(longitude)
+ # else:
+ # return 180 - r, NormalizeLongitude(longitude + 180.0)
+ #
+ # assert 180.0 == NormalizeLongitude(180.0)
+ # assert -180.0 == NormalizeLongitude(-180.0)
+ # assert -179.0 == NormalizeLongitude(181.0)
+ # assert (0.0, 0.0) == NormalizeLatLng(360.0, 0.0)
+ # assert (0.0, 0.0) == NormalizeLatLng(-360.0, 0.0)
+ # assert (85.0, 180.0) == NormalizeLatLng(95.0, 0.0)
+ # assert (-85.0, -170.0) == NormalizeLatLng(-95.0, 10.0)
+ # assert (90.0, 10.0) == NormalizeLatLng(90.0, 10.0)
+ # assert (-90.0, -10.0) == NormalizeLatLng(-90.0, -10.0)
+ # assert (0.0, -170.0) == NormalizeLatLng(-180.0, 10.0)
+ # assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
+ # assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
+ # assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
+ "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
+ "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
+ },
+ "locality": "A String", # Generally refers to the city/town portion of an address.
+ "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
+ "administrativeArea": "A String", # Top-level administrative subdivision of this country.
+ "address": "A String", # The single string version of the address.
+ "postalCode": "A String", # Values are frequently alphanumeric.
+ },
"address": "A String", # The primary address for this company.
"creationTime": "A String", # The timestamp of when affiliation was requested.
# @OutputOnly
@@ -117,7 +176,9 @@
"badgeTier": "A String", # Whether the company is a Partner.
"state": "A String", # The state of relationship, in terms of approvals.
"phoneNumber": "A String", # The phone number for the company's primary address.
+ "managerAccount": "A String", # The AdWords manager account # associated this company.
"logoUrl": "A String", # A URL to a profile photo, e.g. a G+ profile photo.
+ "primaryLanguageCode": "A String", # The primary language code of the company.
"resolvedTimestamp": "A String", # The timestamp when the user was approved.
# @OutputOnly
"segment": [ # The segment the company is classified as.
@@ -148,7 +209,7 @@
{ # A CompanyRelation resource representing information about a user's
# affiliation and standing with a company in Partners.
"website": "A String", # The website URL for this company.
- "managerAccount": "A String", # The AdWords manager account # associated this company.
+ "primaryCountryCode": "A String", # The primary country code of the company.
"specializationStatus": [ # The list of Google Partners specialization statuses for the company.
{ # Agency specialization status
"badgeSpecialization": "A String", # The specialization this status is for.
@@ -158,6 +219,65 @@
"companyId": "A String", # The ID of the company. There may be no id if this is a
# pending company.5
"isPending": True or False, # The flag that indicates if the company is pending verification.
+ "primaryAddress": { # A location with address and geographic coordinates. May optionally contain a # The primary location of the company.
+ # detailed (multi-field) version of the address.
+ "languageCode": "A String", # Language code of the address. Should be in BCP 47 format.
+ "addressLine": [ # The following address lines represent the most specific part of any
+ # address.
+ "A String",
+ ],
+ "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+ # neighborhoods or boroughs in other locations.
+ "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
+ # classification code for sorting mail.
+ "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
+ # of doubles representing degrees latitude and degrees longitude. Unless
+ # specified otherwise, this must conform to the
+ # <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
+ # standard</a>. Values must be within normalized ranges.
+ #
+ # Example of normalization code in Python:
+ #
+ # def NormalizeLongitude(longitude):
+ # """Wraps decimal degrees longitude to [-180.0, 180.0]."""
+ # q, r = divmod(longitude, 360.0)
+ # if r > 180.0 or (r == 180.0 and q <= -1.0):
+ # return r - 360.0
+ # return r
+ #
+ # def NormalizeLatLng(latitude, longitude):
+ # """Wraps decimal degrees latitude and longitude to
+ # [-90.0, 90.0] and [-180.0, 180.0], respectively."""
+ # r = latitude % 360.0
+ # if r <= 90.0:
+ # return r, NormalizeLongitude(longitude)
+ # elif r >= 270.0:
+ # return r - 360, NormalizeLongitude(longitude)
+ # else:
+ # return 180 - r, NormalizeLongitude(longitude + 180.0)
+ #
+ # assert 180.0 == NormalizeLongitude(180.0)
+ # assert -180.0 == NormalizeLongitude(-180.0)
+ # assert -179.0 == NormalizeLongitude(181.0)
+ # assert (0.0, 0.0) == NormalizeLatLng(360.0, 0.0)
+ # assert (0.0, 0.0) == NormalizeLatLng(-360.0, 0.0)
+ # assert (85.0, 180.0) == NormalizeLatLng(95.0, 0.0)
+ # assert (-85.0, -170.0) == NormalizeLatLng(-95.0, 10.0)
+ # assert (90.0, 10.0) == NormalizeLatLng(90.0, 10.0)
+ # assert (-90.0, -10.0) == NormalizeLatLng(-90.0, -10.0)
+ # assert (0.0, -170.0) == NormalizeLatLng(-180.0, 10.0)
+ # assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
+ # assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
+ # assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
+ "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
+ "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
+ },
+ "locality": "A String", # Generally refers to the city/town portion of an address.
+ "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
+ "administrativeArea": "A String", # Top-level administrative subdivision of this country.
+ "address": "A String", # The single string version of the address.
+ "postalCode": "A String", # Values are frequently alphanumeric.
+ },
"address": "A String", # The primary address for this company.
"creationTime": "A String", # The timestamp of when affiliation was requested.
# @OutputOnly
@@ -165,7 +285,9 @@
"badgeTier": "A String", # Whether the company is a Partner.
"state": "A String", # The state of relationship, in terms of approvals.
"phoneNumber": "A String", # The phone number for the company's primary address.
+ "managerAccount": "A String", # The AdWords manager account # associated this company.
"logoUrl": "A String", # A URL to a profile photo, e.g. a G+ profile photo.
+ "primaryLanguageCode": "A String", # The primary language code of the company.
"resolvedTimestamp": "A String", # The timestamp when the user was approved.
# @OutputOnly
"segment": [ # The segment the company is classified as.
@@ -241,8 +363,6 @@
An object of the form:
{ # A resource representing a user of the Partners platform.
- "companyVerificationEmail": "A String", # The email address used by the user used for company verification.
- # @OutputOnly
"profile": { # The profile information of a Partners user. # The profile information of a Partners user, contains all the directly
# editable user information.
"industries": [ # A list of ids representing which industries the user selected.
@@ -255,7 +375,7 @@
"languages": [ # The list of languages this user understands.
"A String",
],
- "jobFunctions": [ # A list of ids represnting which job categories the user selected.
+ "markets": [ # A list of ids representing which markets the user was interested in.
"A String",
],
"emailOptIns": { # A set of opt-ins for a user. # The list of opt-ins for the user, related to communication preferences.
@@ -279,7 +399,8 @@
# address.
"A String",
],
- "locality": "A String", # Generally refers to the city/town portion of an address.
+ "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+ # neighborhoods or boroughs in other locations.
"sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
# classification code for sorting mail.
"latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -321,14 +442,10 @@
# assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
# assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
# assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
- #
- # The code in logs/storage/validator/logs_validator_traits.cc treats this type
- # as if it were annotated as ST_LOCATION.
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
},
- "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
- # neighborhoods or boroughs in other locations.
+ "locality": "A String", # Generally refers to the city/town portion of an address.
"regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
"administrativeArea": "A String", # Top-level administrative subdivision of this country.
"address": "A String", # The single string version of the address.
@@ -336,19 +453,21 @@
},
"phoneNumber": "A String", # The user's phone number.
"givenName": "A String", # The user's given name.
- "markets": [ # A list of ids representing which markets the user was interested in.
+ "jobFunctions": [ # A list of ids represnting which job categories the user selected.
"A String",
],
"profilePublic": True or False, # Whether the user's public profile is visible to anyone with the URL.
},
+ "companyVerificationEmail": "A String", # The email address used by the user used for company verification.
+ # @OutputOnly
"certificationStatus": [ # The list of achieved certifications. These are calculated based on exam
# results and other requirements.
# @OutputOnly
{ # A user's information on a specific certification.
- "warning": True or False, # Whether this certification is in the state of warning.
- "certificationType": "A String", # The type of certification, the area of expertise.
"lastAchieved": "A String", # The date the user last achieved certification.
+ "warning": True or False, # Whether this certification is in the state of warning.
"expiration": "A String", # Date this certification is due to expire.
+ "certificationType": "A String", # The type of certification, the area of expertise.
"achieved": True or False, # Whether this certification has been achieved.
},
],
@@ -359,15 +478,15 @@
# @OutputOnly
{ # Information about a particular AdWords Manager Account.
# Read more at https://support.google.com/adwords/answer/6139186
- "customerName": "A String", # Name of the customer this account represents.
"id": "A String", # The AdWords Manager Account id.
+ "customerName": "A String", # Name of the customer this account represents.
},
],
"company": { # A CompanyRelation resource representing information about a user's # The company that the user is associated with.
# If not present, the user is not associated with any company.
# affiliation and standing with a company in Partners.
"website": "A String", # The website URL for this company.
- "managerAccount": "A String", # The AdWords manager account # associated this company.
+ "primaryCountryCode": "A String", # The primary country code of the company.
"specializationStatus": [ # The list of Google Partners specialization statuses for the company.
{ # Agency specialization status
"badgeSpecialization": "A String", # The specialization this status is for.
@@ -377,6 +496,65 @@
"companyId": "A String", # The ID of the company. There may be no id if this is a
# pending company.5
"isPending": True or False, # The flag that indicates if the company is pending verification.
+ "primaryAddress": { # A location with address and geographic coordinates. May optionally contain a # The primary location of the company.
+ # detailed (multi-field) version of the address.
+ "languageCode": "A String", # Language code of the address. Should be in BCP 47 format.
+ "addressLine": [ # The following address lines represent the most specific part of any
+ # address.
+ "A String",
+ ],
+ "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+ # neighborhoods or boroughs in other locations.
+ "sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
+ # classification code for sorting mail.
+ "latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
+ # of doubles representing degrees latitude and degrees longitude. Unless
+ # specified otherwise, this must conform to the
+ # <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
+ # standard</a>. Values must be within normalized ranges.
+ #
+ # Example of normalization code in Python:
+ #
+ # def NormalizeLongitude(longitude):
+ # """Wraps decimal degrees longitude to [-180.0, 180.0]."""
+ # q, r = divmod(longitude, 360.0)
+ # if r > 180.0 or (r == 180.0 and q <= -1.0):
+ # return r - 360.0
+ # return r
+ #
+ # def NormalizeLatLng(latitude, longitude):
+ # """Wraps decimal degrees latitude and longitude to
+ # [-90.0, 90.0] and [-180.0, 180.0], respectively."""
+ # r = latitude % 360.0
+ # if r <= 90.0:
+ # return r, NormalizeLongitude(longitude)
+ # elif r >= 270.0:
+ # return r - 360, NormalizeLongitude(longitude)
+ # else:
+ # return 180 - r, NormalizeLongitude(longitude + 180.0)
+ #
+ # assert 180.0 == NormalizeLongitude(180.0)
+ # assert -180.0 == NormalizeLongitude(-180.0)
+ # assert -179.0 == NormalizeLongitude(181.0)
+ # assert (0.0, 0.0) == NormalizeLatLng(360.0, 0.0)
+ # assert (0.0, 0.0) == NormalizeLatLng(-360.0, 0.0)
+ # assert (85.0, 180.0) == NormalizeLatLng(95.0, 0.0)
+ # assert (-85.0, -170.0) == NormalizeLatLng(-95.0, 10.0)
+ # assert (90.0, 10.0) == NormalizeLatLng(90.0, 10.0)
+ # assert (-90.0, -10.0) == NormalizeLatLng(-90.0, -10.0)
+ # assert (0.0, -170.0) == NormalizeLatLng(-180.0, 10.0)
+ # assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
+ # assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
+ # assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
+ "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
+ "longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
+ },
+ "locality": "A String", # Generally refers to the city/town portion of an address.
+ "regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
+ "administrativeArea": "A String", # Top-level administrative subdivision of this country.
+ "address": "A String", # The single string version of the address.
+ "postalCode": "A String", # Values are frequently alphanumeric.
+ },
"address": "A String", # The primary address for this company.
"creationTime": "A String", # The timestamp of when affiliation was requested.
# @OutputOnly
@@ -384,7 +562,9 @@
"badgeTier": "A String", # Whether the company is a Partner.
"state": "A String", # The state of relationship, in terms of approvals.
"phoneNumber": "A String", # The phone number for the company's primary address.
+ "managerAccount": "A String", # The AdWords manager account # associated this company.
"logoUrl": "A String", # A URL to a profile photo, e.g. a G+ profile photo.
+ "primaryLanguageCode": "A String", # The primary language code of the company.
"resolvedTimestamp": "A String", # The timestamp when the user was approved.
# @OutputOnly
"segment": [ # The segment the company is classified as.
@@ -440,7 +620,7 @@
"languages": [ # The list of languages this user understands.
"A String",
],
- "jobFunctions": [ # A list of ids represnting which job categories the user selected.
+ "markets": [ # A list of ids representing which markets the user was interested in.
"A String",
],
"emailOptIns": { # A set of opt-ins for a user. # The list of opt-ins for the user, related to communication preferences.
@@ -464,7 +644,8 @@
# address.
"A String",
],
- "locality": "A String", # Generally refers to the city/town portion of an address.
+ "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+ # neighborhoods or boroughs in other locations.
"sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
# classification code for sorting mail.
"latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -506,14 +687,10 @@
# assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
# assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
# assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
- #
- # The code in logs/storage/validator/logs_validator_traits.cc treats this type
- # as if it were annotated as ST_LOCATION.
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
},
- "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
- # neighborhoods or boroughs in other locations.
+ "locality": "A String", # Generally refers to the city/town portion of an address.
"regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
"administrativeArea": "A String", # Top-level administrative subdivision of this country.
"address": "A String", # The single string version of the address.
@@ -521,7 +698,7 @@
},
"phoneNumber": "A String", # The user's phone number.
"givenName": "A String", # The user's given name.
- "markets": [ # A list of ids representing which markets the user was interested in.
+ "jobFunctions": [ # A list of ids represnting which job categories the user selected.
"A String",
],
"profilePublic": True or False, # Whether the user's public profile is visible to anyone with the URL.
@@ -557,7 +734,7 @@
"languages": [ # The list of languages this user understands.
"A String",
],
- "jobFunctions": [ # A list of ids represnting which job categories the user selected.
+ "markets": [ # A list of ids representing which markets the user was interested in.
"A String",
],
"emailOptIns": { # A set of opt-ins for a user. # The list of opt-ins for the user, related to communication preferences.
@@ -581,7 +758,8 @@
# address.
"A String",
],
- "locality": "A String", # Generally refers to the city/town portion of an address.
+ "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
+ # neighborhoods or boroughs in other locations.
"sortingCode": "A String", # Use of this code is very country-specific, but will refer to a secondary
# classification code for sorting mail.
"latLng": { # An object representing a latitude/longitude pair. This is expressed as a pair # The latitude and longitude of the location, in degrees.
@@ -623,14 +801,10 @@
# assert (0.0, -170.0) == NormalizeLatLng(180.0, 10.0)
# assert (-90.0, 10.0) == NormalizeLatLng(270.0, 10.0)
# assert (90.0, 10.0) == NormalizeLatLng(-270.0, 10.0)
- #
- # The code in logs/storage/validator/logs_validator_traits.cc treats this type
- # as if it were annotated as ST_LOCATION.
"latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
"longitude": 3.14, # The longitude in degrees. It must be in the range [-180.0, +180.0].
},
- "dependentLocality": "A String", # Dependent locality or sublocality. Used for UK dependent localities, or
- # neighborhoods or boroughs in other locations.
+ "locality": "A String", # Generally refers to the city/town portion of an address.
"regionCode": "A String", # CLDR (Common Locale Data Repository) region code .
"administrativeArea": "A String", # Top-level administrative subdivision of this country.
"address": "A String", # The single string version of the address.
@@ -638,7 +812,7 @@
},
"phoneNumber": "A String", # The user's phone number.
"givenName": "A String", # The user's given name.
- "markets": [ # A list of ids representing which markets the user was interested in.
+ "jobFunctions": [ # A list of ids represnting which job categories the user selected.
"A String",
],
"profilePublic": True or False, # Whether the user's public profile is visible to anyone with the URL.