class Google::Apis::PlusDomainsV1::Person::Cover::CoverPhoto

The person's primary cover image.

Attributes

height[RW]

The height of the image. Corresponds to the JSON property `height` @return [Fixnum]

url[RW]

The URL of the image. Corresponds to the JSON property `url` @return [String]

width[RW]

The width of the image. Corresponds to the JSON property `width` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/plus_domains_v1/classes.rb, line 2194
def update!(**args)
  @height = args[:height] if args.key?(:height)
  @url = args[:url] if args.key?(:url)
  @width = args[:width] if args.key?(:width)
end