Class: Google::Apis::BloggerV3::Page::Author
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::Page::Author
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/blogger_v3/classes.rb,
lib/google/apis/blogger_v3/representations.rb,
lib/google/apis/blogger_v3/representations.rb
Overview
The author of this Page.
Defined Under Namespace
Classes: Image
Instance Attribute Summary collapse
-
#display_name ⇒ String
The display name.
-
#id ⇒ String
The identifier of the creator.
-
#image ⇒ Google::Apis::BloggerV3::Page::Author::Image
The creator's avatar.
-
#url ⇒ String
The URL of the creator's Profile page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Author
constructor
A new instance of Author.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Author
Returns a new instance of Author.
665 666 667 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 665 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The display name.
Corresponds to the JSON property displayName
648 649 650 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 648 def display_name @display_name end |
#id ⇒ String
The identifier of the creator.
Corresponds to the JSON property id
653 654 655 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 653 def id @id end |
#image ⇒ Google::Apis::BloggerV3::Page::Author::Image
The creator's avatar.
Corresponds to the JSON property image
658 659 660 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 658 def image @image end |
#url ⇒ String
The URL of the creator's Profile page.
Corresponds to the JSON property url
663 664 665 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 663 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
670 671 672 673 674 675 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 670 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) @image = args[:image] if args.key?(:image) @url = args[:url] if args.key?(:url) end |