class Google::Apis::BloggerV3::User

Attributes

about[RW]

Profile summary information. Corresponds to the JSON property `about` @return [String]

blogs[RW]

The container of blogs for this user. Corresponds to the JSON property `blogs` @return [Google::Apis::BloggerV3::User::Blogs]

created[RW]

The timestamp of when this profile was created, in seconds since epoch. Corresponds to the JSON property `created` @return [DateTime]

display_name[RW]

The display name. Corresponds to the JSON property `displayName` @return [String]

id[RW]

The identifier for this User. Corresponds to the JSON property `id` @return [String]

kind[RW]

The kind of this entity. Always blogger#user Corresponds to the JSON property `kind` @return [String]

locale[RW]

This user's locale Corresponds to the JSON property `locale` @return [Google::Apis::BloggerV3::User::Locale]

url[RW]

The user's profile page. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/blogger_v3/classes.rb, line 1285
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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