Class: Google::Apis::WebmastersV3::WmxSite
- Inherits:
-
Object
- Object
- Google::Apis::WebmastersV3::WmxSite
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/webmasters_v3/classes.rb,
generated/google/apis/webmasters_v3/representations.rb,
generated/google/apis/webmasters_v3/representations.rb
Overview
Contains permission level information about a Search Console site. For more information, see Permissions in Search Console.
Instance Attribute Summary collapse
-
#permission_level ⇒ String
The user's permission level for the site.
-
#site_url ⇒ String
The URL of the site.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WmxSite
constructor
A new instance of WmxSite.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WmxSite
Returns a new instance of WmxSite.
296 297 298 |
# File 'generated/google/apis/webmasters_v3/classes.rb', line 296 def initialize(**args) update!(**args) end |
Instance Attribute Details
#permission_level ⇒ String
The user's permission level for the site.
Corresponds to the JSON property permissionLevel
289 290 291 |
# File 'generated/google/apis/webmasters_v3/classes.rb', line 289 def @permission_level end |
#site_url ⇒ String
The URL of the site.
Corresponds to the JSON property siteUrl
294 295 296 |
# File 'generated/google/apis/webmasters_v3/classes.rb', line 294 def site_url @site_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
301 302 303 304 |
# File 'generated/google/apis/webmasters_v3/classes.rb', line 301 def update!(**args) @permission_level = args[:permission_level] if args.key?(:permission_level) @site_url = args[:site_url] if args.key?(:site_url) end |