Class: Google::Apis::AnalyticsV3::RealtimeData::ProfileInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AnalyticsV3::RealtimeData::ProfileInfo
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb 
Overview
Information for the view (profile), for which the real time data was requested.
Instance Attribute Summary collapse
- 
  
    
      #account_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Account ID to which this view (profile) belongs.
 - 
  
    
      #internal_web_property_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Internal ID for the web property to which this view (profile) belongs.
 - 
  
    
      #profile_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
View (Profile) ID.
 - 
  
    
      #profile_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
View (Profile) name.
 - 
  
    
      #table_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Table ID for view (profile).
 - 
  
    
      #web_property_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Web Property ID to which this view (profile) belongs.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProfileInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ProfileInfo.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProfileInfo
Returns a new instance of ProfileInfo
      4597 4598 4599  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4597 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#account_id ⇒ String
Account ID to which this view (profile) belongs.
Corresponds to the JSON property accountId
      4570 4571 4572  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4570 def account_id @account_id end  | 
  
#internal_web_property_id ⇒ String
Internal ID for the web property to which this view (profile) belongs.
Corresponds to the JSON property internalWebPropertyId
      4575 4576 4577  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4575 def internal_web_property_id @internal_web_property_id end  | 
  
#profile_id ⇒ String
View (Profile) ID.
Corresponds to the JSON property profileId
      4580 4581 4582  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4580 def profile_id @profile_id end  | 
  
#profile_name ⇒ String
View (Profile) name.
Corresponds to the JSON property profileName
      4585 4586 4587  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4585 def profile_name @profile_name end  | 
  
#table_id ⇒ String
Table ID for view (profile).
Corresponds to the JSON property tableId
      4590 4591 4592  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4590 def table_id @table_id end  | 
  
#web_property_id ⇒ String
Web Property ID to which this view (profile) belongs.
Corresponds to the JSON property webPropertyId
      4595 4596 4597  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4595 def web_property_id @web_property_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4602 4603 4604 4605 4606 4607 4608 4609  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 4602 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @internal_web_property_id = args[:internal_web_property_id] if args.key?(:internal_web_property_id) @profile_id = args[:profile_id] if args.key?(:profile_id) @profile_name = args[:profile_name] if args.key?(:profile_name) @table_id = args[:table_id] if args.key?(:table_id) @web_property_id = args[:web_property_id] if args.key?(:web_property_id) end  |