Class: Google::Apis::BloggerV3::BlogList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BloggerV3::BlogList
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/blogger_v3/classes.rb,
 generated/google/apis/blogger_v3/representations.rb,
 generated/google/apis/blogger_v3/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #blog_user_infos  ⇒ Array<Google::Apis::BloggerV3::BlogUserInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Admin level list of blog per-user information Corresponds to the JSON property blogUserInfos.
- 
  
    
      #items  ⇒ Array<Google::Apis::BloggerV3::Blog> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of Blogs this user has Authorship or Admin rights over. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of this entity. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BlogList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BlogList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BlogList
Returns a new instance of BlogList
| 222 223 224 | # File 'generated/google/apis/blogger_v3/classes.rb', line 222 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#blog_user_infos ⇒ Array<Google::Apis::BloggerV3::BlogUserInfo>
Admin level list of blog per-user information
Corresponds to the JSON property blogUserInfos
| 210 211 212 | # File 'generated/google/apis/blogger_v3/classes.rb', line 210 def blog_user_infos @blog_user_infos end | 
#items ⇒ Array<Google::Apis::BloggerV3::Blog>
The list of Blogs this user has Authorship or Admin rights over.
Corresponds to the JSON property items
| 215 216 217 | # File 'generated/google/apis/blogger_v3/classes.rb', line 215 def items @items end | 
#kind ⇒ String
The kind of this entity. Always blogger#blogList
Corresponds to the JSON property kind
| 220 221 222 | # File 'generated/google/apis/blogger_v3/classes.rb', line 220 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 227 228 229 230 231 | # File 'generated/google/apis/blogger_v3/classes.rb', line 227 def update!(**args) @blog_user_infos = args[:blog_user_infos] if args.key?(:blog_user_infos) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |