Class: Google::Apis::CalendarV3::Event::Source

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/calendar_v3/classes.rb,
lib/google/apis/calendar_v3/representations.rb,
lib/google/apis/calendar_v3/representations.rb

Overview

Source from which the event was created. For example, a web page, an email message or any document identifiable by an URL with HTTP or HTTPS scheme. Can only be seen or modified by the creator of the event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Source

Returns a new instance of Source.



1623
1624
1625
# File 'lib/google/apis/calendar_v3/classes.rb', line 1623

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#titleString

Title of the source; for example a title of a web page or an email subject. Corresponds to the JSON property title

Returns:

  • (String)


1616
1617
1618
# File 'lib/google/apis/calendar_v3/classes.rb', line 1616

def title
  @title
end

#urlString

URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS. Corresponds to the JSON property url

Returns:

  • (String)


1621
1622
1623
# File 'lib/google/apis/calendar_v3/classes.rb', line 1621

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1628
1629
1630
1631
# File 'lib/google/apis/calendar_v3/classes.rb', line 1628

def update!(**args)
  @title = args[:title] if args.key?(:title)
  @url = args[:url] if args.key?(:url)
end