Class: Google::Apis::BloggerV2::PageList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/blogger_v2/classes.rb,
lib/google/apis/blogger_v2/representations.rb,
lib/google/apis/blogger_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PageList

Returns a new instance of PageList.



741
742
743
# File 'lib/google/apis/blogger_v2/classes.rb', line 741

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

Etag of the response. Corresponds to the JSON property etag

Returns:

  • (String)


724
725
726
# File 'lib/google/apis/blogger_v2/classes.rb', line 724

def etag
  @etag
end

#itemsArray<Google::Apis::BloggerV2::Page>

The list of Pages for a Blog. Corresponds to the JSON property items

Returns:



729
730
731
# File 'lib/google/apis/blogger_v2/classes.rb', line 729

def items
  @items
end

#kindString

The kind of this entity. Always blogger#pageList. Corresponds to the JSON property kind

Returns:

  • (String)


734
735
736
# File 'lib/google/apis/blogger_v2/classes.rb', line 734

def kind
  @kind
end

#next_page_tokenString

Pagination token to fetch the next page, if one exists. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


739
740
741
# File 'lib/google/apis/blogger_v2/classes.rb', line 739

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



746
747
748
749
750
751
# File 'lib/google/apis/blogger_v2/classes.rb', line 746

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end