Class: Google::Apis::CalendarV3::Event::Creator
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CalendarV3::Event::Creator
 
- Defined in:
- generated/google/apis/calendar_v3/classes.rb,
 generated/google/apis/calendar_v3/representations.rb,
 generated/google/apis/calendar_v3/representations.rb
Overview
The creator of the event. Read-only.
Instance Attribute Summary collapse
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The creator's name, if available. 
- 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The creator's email address, if available. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The creator's Profile ID, if available. 
- 
  
    
      #self  ⇒ Boolean 
    
    
      (also: #self?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether the creator corresponds to the calendar on which this copy of the event appears. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Creator 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Creator. 
- 
  
    
      #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) ⇒ Creator
Returns a new instance of Creator
| 1352 1353 1354 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1352 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#display_name ⇒ String
The creator's name, if available.
Corresponds to the JSON property displayName
| 1332 1333 1334 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1332 def display_name @display_name end | 
#email ⇒ String
The creator's email address, if available.
Corresponds to the JSON property email
| 1337 1338 1339 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1337 def email @email end | 
#id ⇒ String
The creator's Profile ID, if available. It corresponds to theid field in the
People collection of the Google+ API
Corresponds to the JSON property id
| 1343 1344 1345 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1343 def id @id end | 
#self ⇒ Boolean Also known as: self?
Whether the creator corresponds to the calendar on which this copy of the
event appears. Read-only. The default is False.
Corresponds to the JSON property self
| 1349 1350 1351 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1349 def self @self end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1357 1358 1359 1360 1361 1362 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1357 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @id = args[:id] if args.key?(:id) @self = args[:self] if args.key?(:self) end |