Class: Google::Apis::ContentV2::LiaAboutPageSettings
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::LiaAboutPageSettings
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/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
      3113 3114 3115  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3113 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#status ⇒ String
The status of the verification process for the About page.
Corresponds to the JSON property status
      3106 3107 3108  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3106 def status @status end  | 
  
#url ⇒ String
The URL for the About page.
Corresponds to the JSON property url
      3111 3112 3113  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3111 def url @url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3118 3119 3120 3121  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 3118 def update!(**args) @status = args[:status] if args.key?(:status) @url = args[:url] if args.key?(:url) end  |