Class: Google::Apis::PlusDomainsV1::Activity::Object::Resharers
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PlusDomainsV1::Activity::Object::Resharers
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/plus_domains_v1/classes.rb,
generated/google/apis/plus_domains_v1/representations.rb,
generated/google/apis/plus_domains_v1/representations.rb 
Overview
People who reshared this activity.
Instance Attribute Summary collapse
- 
  
    
      #self_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL for the collection of resharers.
 - 
  
    
      #total_items  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Total number of people who reshared this activity.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Resharers 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Resharers.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Resharers
Returns a new instance of Resharers
      905 906 907  | 
    
      # File 'generated/google/apis/plus_domains_v1/classes.rb', line 905 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#self_link ⇒ String
The URL for the collection of resharers.
Corresponds to the JSON property selfLink
      898 899 900  | 
    
      # File 'generated/google/apis/plus_domains_v1/classes.rb', line 898 def self_link @self_link end  | 
  
#total_items ⇒ Fixnum
Total number of people who reshared this activity.
Corresponds to the JSON property totalItems
      903 904 905  | 
    
      # File 'generated/google/apis/plus_domains_v1/classes.rb', line 903 def total_items @total_items end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      910 911 912 913  | 
    
      # File 'generated/google/apis/plus_domains_v1/classes.rb', line 910 def update!(**args) @self_link = args[:self_link] if args.key?(:self_link) @total_items = args[:total_items] if args.key?(:total_items) end  |