Class: Google::Apis::YoutubePartnerV1::PolicyList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::PolicyList
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
 generated/google/apis/youtube_partner_v1/representations.rb,
 generated/google/apis/youtube_partner_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::YoutubePartnerV1::Policy> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of saved policies. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API response. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PolicyList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PolicyList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PolicyList
Returns a new instance of PolicyList
| 2833 2834 2835 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2833 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubePartnerV1::Policy>
A list of saved policies.
Corresponds to the JSON property items
| 2825 2826 2827 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2825 def items @items end | 
#kind ⇒ String
The type of the API response. For this operation, the value is youtubePartner#
policyList.
Corresponds to the JSON property kind
| 2831 2832 2833 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2831 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2838 2839 2840 2841 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2838 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |