Class: Google::Apis::PartnersV2::RequestMetadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PartnersV2::RequestMetadata
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/partners_v2/classes.rb,
 generated/google/apis/partners_v2/representations.rb,
 generated/google/apis/partners_v2/representations.rb
Overview
Common data that is in each API request.
Instance Attribute Summary collapse
- 
  
    
      #experiment_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Experiment IDs the current request belongs to. 
- 
  
    
      #locale  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Locale to use for the current request. 
- 
  
    
      #partners_session_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Google Partners session ID. 
- 
  
    
      #traffic_source  ⇒ Google::Apis::PartnersV2::TrafficSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Source of traffic for the current request. 
- 
  
    
      #user_overrides  ⇒ Google::Apis::PartnersV2::UserOverrides 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Values to use instead of the user's respective defaults. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RequestMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RequestMetadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RequestMetadata
Returns a new instance of RequestMetadata
| 1929 1930 1931 | # File 'generated/google/apis/partners_v2/classes.rb', line 1929 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#experiment_ids ⇒ Array<String>
Experiment IDs the current request belongs to.
Corresponds to the JSON property experimentIds
| 1906 1907 1908 | # File 'generated/google/apis/partners_v2/classes.rb', line 1906 def experiment_ids @experiment_ids end | 
#locale ⇒ String
Locale to use for the current request.
Corresponds to the JSON property locale
| 1911 1912 1913 | # File 'generated/google/apis/partners_v2/classes.rb', line 1911 def locale @locale end | 
#partners_session_id ⇒ String
Google Partners session ID.
Corresponds to the JSON property partnersSessionId
| 1916 1917 1918 | # File 'generated/google/apis/partners_v2/classes.rb', line 1916 def partners_session_id @partners_session_id end | 
#traffic_source ⇒ Google::Apis::PartnersV2::TrafficSource
Source of traffic for the current request.
Corresponds to the JSON property trafficSource
| 1921 1922 1923 | # File 'generated/google/apis/partners_v2/classes.rb', line 1921 def traffic_source @traffic_source end | 
#user_overrides ⇒ Google::Apis::PartnersV2::UserOverrides
Values to use instead of the user's respective defaults. These are only
honored by whitelisted products.
Corresponds to the JSON property userOverrides
| 1927 1928 1929 | # File 'generated/google/apis/partners_v2/classes.rb', line 1927 def user_overrides @user_overrides end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1934 1935 1936 1937 1938 1939 1940 | # File 'generated/google/apis/partners_v2/classes.rb', line 1934 def update!(**args) @experiment_ids = args[:experiment_ids] if args.key?(:experiment_ids) @locale = args[:locale] if args.key?(:locale) @partners_session_id = args[:partners_session_id] if args.key?(:partners_session_id) @traffic_source = args[:traffic_source] if args.key?(:traffic_source) @user_overrides = args[:user_overrides] if args.key?(:user_overrides) end |