Class: Google::Apis::ClassroomV1::DriveFolder
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::DriveFolder
 
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
 generated/google/apis/classroom_v1/representations.rb,
 generated/google/apis/classroom_v1/representations.rb
Overview
Representation of a Google Drive folder.
Instance Attribute Summary collapse
- 
  
    
      #alternate_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URL that can be used to access the Drive folder. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Drive API resource ID. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Title of the Drive folder. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DriveFolder 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DriveFolder. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ DriveFolder
Returns a new instance of DriveFolder
| 791 792 793 | # File 'generated/google/apis/classroom_v1/classes.rb', line 791 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#alternate_link ⇒ String
URL that can be used to access the Drive folder.
Read-only.
Corresponds to the JSON property alternateLink
| 778 779 780 | # File 'generated/google/apis/classroom_v1/classes.rb', line 778 def alternate_link @alternate_link end | 
#id ⇒ String
Drive API resource ID.
Corresponds to the JSON property id
| 783 784 785 | # File 'generated/google/apis/classroom_v1/classes.rb', line 783 def id @id end | 
#title ⇒ String
Title of the Drive folder.
Read-only.
Corresponds to the JSON property title
| 789 790 791 | # File 'generated/google/apis/classroom_v1/classes.rb', line 789 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 796 797 798 799 800 | # File 'generated/google/apis/classroom_v1/classes.rb', line 796 def update!(**args) @alternate_link = args[:alternate_link] if args.key?(:alternate_link) @id = args[:id] if args.key?(:id) @title = args[:title] if args.key?(:title) end |