Class: Google::Apis::ContentV2_1::LiaAboutPageSettings
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::LiaAboutPageSettings
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the verification process for the About page.
-
#url ⇒ String
The URL for the About page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiaAboutPageSettings
constructor
A new instance of LiaAboutPageSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiaAboutPageSettings
Returns a new instance of LiaAboutPageSettings.
2890 2891 2892 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2890 def initialize(**args) update!(**args) end |
Instance Attribute Details
#status ⇒ String
The status of the verification process for the About page. Acceptable values are:
- "
active
" - "
inactive
" - "
pending
" Corresponds to the JSON propertystatus
2883 2884 2885 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2883 def status @status end |
#url ⇒ String
The URL for the About page.
Corresponds to the JSON property url
2888 2889 2890 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2888 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2895 2896 2897 2898 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2895 def update!(**args) @status = args[:status] if args.key?(:status) @url = args[:url] if args.key?(:url) end |