class Google::Apis::BloggerV3::Blog

Attributes

custom_meta_data[RW]

The JSON custom meta-data for the Blog. Corresponds to the JSON property `customMetaData` @return [String]

description[RW]

The description of this blog. This is displayed underneath the title. Corresponds to the JSON property `description` @return [String]

id[RW]

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

kind[RW]

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

locale[RW]

The locale this Blog is set to. Corresponds to the JSON property `locale` @return [Google::Apis::BloggerV3::Blog::Locale]

name[RW]

The name of this blog. This is displayed as the title. Corresponds to the JSON property `name` @return [String]

pages[RW]

The container of pages in this blog. Corresponds to the JSON property `pages` @return [Google::Apis::BloggerV3::Blog::Pages]

posts[RW]

The container of posts in this blog. Corresponds to the JSON property `posts` @return [Google::Apis::BloggerV3::Blog::Posts]

published[RW]

RFC 3339 date-time when this blog was published. Corresponds to the JSON property `published` @return [String]

status[RW]

The status of the blog. Corresponds to the JSON property `status` @return [String]

updated[RW]

RFC 3339 date-time when this blog was last updated. Corresponds to the JSON property `updated` @return [String]

url[RW]

The URL where this blog is published. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/blogger_v3/classes.rb, line 94
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 99
def update!(**args)
  @custom_meta_data = args[:custom_meta_data] if args.key?(:custom_meta_data)
  @description = args[:description] if args.key?(:description)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @locale = args[:locale] if args.key?(:locale)
  @name = args[:name] if args.key?(:name)
  @pages = args[:pages] if args.key?(:pages)
  @posts = args[:posts] if args.key?(:posts)
  @published = args[:published] if args.key?(:published)
  @self_link = args[:self_link] if args.key?(:self_link)
  @status = args[:status] if args.key?(:status)
  @updated = args[:updated] if args.key?(:updated)
  @url = args[:url] if args.key?(:url)
end