class Google::Apis::PartnersV2::PublicProfile

Basic information from a public profile.

Attributes

display_image_url[RW]

The URL to the main display image of the public profile. Corresponds to the JSON property `displayImageUrl` @return [String]

display_name[RW]

The display name of the public profile. Corresponds to the JSON property `displayName` @return [String]

id[RW]

The ID which can be used to retrieve more details about the public profile. Corresponds to the JSON property `id` @return [String]

url[RW]

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/partners_v2/classes.rb, line 729
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @url = args[:url] if args.key?(:url)
  @display_image_url = args[:display_image_url] if args.key?(:display_image_url)
end