Class: Google::Apis::SearchconsoleV1::WmxSite
- Inherits:
-
Object
- Object
- Google::Apis::SearchconsoleV1::WmxSite
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchconsole_v1/classes.rb,
lib/google/apis/searchconsole_v1/representations.rb,
lib/google/apis/searchconsole_v1/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.
934 935 936 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 934 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
927 928 929 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 927 def @permission_level end |
#site_url ⇒ String
The URL of the site.
Corresponds to the JSON property siteUrl
932 933 934 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 932 def site_url @site_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
939 940 941 942 |
# File 'lib/google/apis/searchconsole_v1/classes.rb', line 939 def update!(**args) @permission_level = args[:permission_level] if args.key?(:permission_level) @site_url = args[:site_url] if args.key?(:site_url) end |