class Google::Apis::BloggerV3::PostUserInfo

Attributes

kind[RW]

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

post[RW]

The Post resource. Corresponds to the JSON property `post` @return [Google::Apis::BloggerV3::Post]

post_user_info[RW]

Information about a User for the Post. Corresponds to the JSON property `post_user_info` @return [Google::Apis::BloggerV3::PostPerUserInfo]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/blogger_v3/classes.rb, line 1204
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @post = args[:post] if args.key?(:post)
  @post_user_info = args[:post_user_info] if args.key?(:post_user_info)
end