Class: Google::Apis::DriveV2::User::Picture

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

Overview

The user's profile picture.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Picture

Returns a new instance of Picture.



2580
2581
2582
# File 'generated/google/apis/drive_v2/classes.rb', line 2580

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

Instance Attribute Details

#urlString

A URL that points to a profile picture of this user. Corresponds to the JSON property url

Returns:

  • (String)


2578
2579
2580
# File 'generated/google/apis/drive_v2/classes.rb', line 2578

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2585
2586
2587
# File 'generated/google/apis/drive_v2/classes.rb', line 2585

def update!(**args)
  @url = args[:url] if args.key?(:url)
end