Class: Google::Apis::CalendarV3::LaunchInfo
- Inherits:
-
Object
- Object
- Google::Apis::CalendarV3::LaunchInfo
- 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_id ⇒ String
Corresponds to the JSON property
appId
. -
#install_url ⇒ String
Corresponds to the JSON property
installUrl
. -
#intent_action ⇒ String
Corresponds to the JSON property
intentAction
. -
#uri ⇒ String
Corresponds to the JSON property
uri
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LaunchInfo
constructor
A new instance of LaunchInfo.
-
#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) ⇒ LaunchInfo
Returns a new instance of LaunchInfo
1779 1780 1781 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1779 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_id ⇒ String
Corresponds to the JSON property appId
1762 1763 1764 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1762 def app_id @app_id end |
#install_url ⇒ String
Corresponds to the JSON property installUrl
1767 1768 1769 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1767 def install_url @install_url end |
#intent_action ⇒ String
Corresponds to the JSON property intentAction
1772 1773 1774 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1772 def intent_action @intent_action end |
#uri ⇒ String
Corresponds to the JSON property uri
1777 1778 1779 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1777 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1784 1785 1786 1787 1788 1789 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1784 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @install_url = args[:install_url] if args.key?(:install_url) @intent_action = args[:intent_action] if args.key?(:intent_action) @uri = args[:uri] if args.key?(:uri) end |