Class: Google::Apis::CalendarV3::DisplayInfo
- Inherits:
-
Object
- Object
- Google::Apis::CalendarV3::DisplayInfo
- Defined in:
- generated/google/apis/calendar_v3/classes.rb,
generated/google/apis/calendar_v3/representations.rb,
generated/google/apis/calendar_v3/representations.rb
Instance Attribute Summary collapse
-
#app_icon_url ⇒ String
Corresponds to the JSON property
appIconUrl
. -
#app_short_title ⇒ String
Corresponds to the JSON property
appShortTitle
. -
#app_title ⇒ String
Corresponds to the JSON property
appTitle
. -
#link_short_title ⇒ String
Corresponds to the JSON property
linkShortTitle
. -
#link_title ⇒ String
Corresponds to the JSON property
linkTitle
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DisplayInfo
constructor
A new instance of DisplayInfo.
-
#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) ⇒ DisplayInfo
Returns a new instance of DisplayInfo
656 657 658 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_icon_url ⇒ String
Corresponds to the JSON property appIconUrl
634 635 636 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 634 def app_icon_url @app_icon_url end |
#app_short_title ⇒ String
Corresponds to the JSON property appShortTitle
639 640 641 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 639 def app_short_title @app_short_title end |
#app_title ⇒ String
Corresponds to the JSON property appTitle
644 645 646 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 644 def app_title @app_title end |
#link_short_title ⇒ String
Corresponds to the JSON property linkShortTitle
649 650 651 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 649 def link_short_title @link_short_title end |
#link_title ⇒ String
Corresponds to the JSON property linkTitle
654 655 656 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 654 def link_title @link_title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
661 662 663 664 665 666 667 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 661 def update!(**args) @app_icon_url = args[:app_icon_url] if args.key?(:app_icon_url) @app_short_title = args[:app_short_title] if args.key?(:app_short_title) @app_title = args[:app_title] if args.key?(:app_title) @link_short_title = args[:link_short_title] if args.key?(:link_short_title) @link_title = args[:link_title] if args.key?(:link_title) end |