class Google::Apis::BloggerV2::BlogPerUserInfo
Attributes
ID of the Blog
resource. Corresponds to the JSON property `blogId` @return [String]
True if the user has Admin level access to the blog. Corresponds to the JSON property `hasAdminAccess` @return [Boolean]
True if the user has Admin level access to the blog. Corresponds to the JSON property `hasAdminAccess` @return [Boolean]
The kind of this entity. Always blogger#blogPerUserInfo. Corresponds to the JSON property `kind` @return [String]
The Photo Album Key for the user when adding photos to the blog. Corresponds to the JSON property `photosAlbumKey` @return [String]
Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER). Corresponds to the JSON property `role` @return [String]
ID of the User
. Corresponds to the JSON property `userId` @return [String]
Public Class Methods
# File lib/google/apis/blogger_v2/classes.rb, line 269 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/blogger_v2/classes.rb, line 274 def update!(**args) @blog_id = args[:blog_id] if args.key?(:blog_id) @has_admin_access = args[:has_admin_access] if args.key?(:has_admin_access) @kind = args[:kind] if args.key?(:kind) @photos_album_key = args[:photos_album_key] if args.key?(:photos_album_key) @role = args[:role] if args.key?(:role) @user_id = args[:user_id] if args.key?(:user_id) end