class Google::Apis::BloggerV3::User
Attributes
Profile summary information. Corresponds to the JSON property `about` @return [String]
The container of blogs for this user. Corresponds to the JSON property `blogs` @return [Google::Apis::BloggerV3::User::Blogs]
The timestamp of when this profile was created, in seconds since epoch. Corresponds to the JSON property `created` @return [DateTime]
The display name. Corresponds to the JSON property `displayName` @return [String]
The identifier for this User. Corresponds to the JSON property `id` @return [String]
The kind of this entity. Always blogger#user Corresponds to the JSON property `kind` @return [String]
This user's locale Corresponds to the JSON property `locale` @return [Google::Apis::BloggerV3::User::Locale]
The API REST URL to fetch this resource from. Corresponds to the JSON property `selfLink` @return [String]
The user's profile page. Corresponds to the JSON property `url` @return [String]
Public Class Methods
# File generated/google/apis/blogger_v3/classes.rb, line 1285 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/blogger_v3/classes.rb, line 1290 def update!(**args) @about = args[:about] if args.key?(:about) @blogs = args[:blogs] if args.key?(:blogs) @created = args[:created] if args.key?(:created) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @locale = args[:locale] if args.key?(:locale) @self_link = args[:self_link] if args.key?(:self_link) @url = args[:url] if args.key?(:url) end