Class: Google::Apis::ToolresultsV1beta3::GraphicsStatsBucket
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::GraphicsStatsBucket
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #frame_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of frames in the bucket. 
- 
  
    
      #render_millis  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Lower bound of render time in milliseconds. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GraphicsStatsBucket 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GraphicsStatsBucket. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GraphicsStatsBucket
Returns a new instance of GraphicsStatsBucket
| 886 887 888 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 886 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#frame_count ⇒ Fixnum
Number of frames in the bucket.
Corresponds to the JSON property frameCount
| 879 880 881 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 879 def frame_count @frame_count end | 
#render_millis ⇒ Fixnum
Lower bound of render time in milliseconds.
Corresponds to the JSON property renderMillis
| 884 885 886 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 884 def render_millis @render_millis end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 891 892 893 894 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 891 def update!(**args) @frame_count = args[:frame_count] if args.key?(:frame_count) @render_millis = args[:render_millis] if args.key?(:render_millis) end |