Class: Google::Apis::PlusV1::Activity::Actor::Image
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PlusV1::Activity::Actor::Image
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/plus_v1/classes.rb,
 generated/google/apis/plus_v1/representations.rb,
 generated/google/apis/plus_v1/representations.rb
Overview
The image representation of the actor.
Instance Attribute Summary collapse
- 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL of the actor's profile photo. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Image 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Image. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Image
Returns a new instance of Image
| 300 301 302 | # File 'generated/google/apis/plus_v1/classes.rb', line 300 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#url ⇒ String
The URL of the actor's profile photo. To resize the image and crop it to a
square, append the query string ?sz=x, where x is the dimension in pixels of
each side.
Corresponds to the JSON property url
| 298 299 300 | # File 'generated/google/apis/plus_v1/classes.rb', line 298 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 305 306 307 | # File 'generated/google/apis/plus_v1/classes.rb', line 305 def update!(**args) @url = args[:url] if args.key?(:url) end |