Class: Google::Apis::AndroidmanagementV1::SetupAction
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::SetupAction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb
Overview
An action executed during setup.
Instance Attribute Summary collapse
-
#description ⇒ Google::Apis::AndroidmanagementV1::UserFacingMessage
Provides a user-facing message with locale info.
-
#launch_app ⇒ Google::Apis::AndroidmanagementV1::LaunchAppAction
An action to launch an app.
-
#title ⇒ Google::Apis::AndroidmanagementV1::UserFacingMessage
Provides a user-facing message with locale info.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SetupAction
constructor
A new instance of SetupAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SetupAction
Returns a new instance of SetupAction.
3150 3151 3152 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ Google::Apis::AndroidmanagementV1::UserFacingMessage
Provides a user-facing message with locale info. The maximum message length is
4096 characters.
Corresponds to the JSON property description
3137 3138 3139 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3137 def description @description end |
#launch_app ⇒ Google::Apis::AndroidmanagementV1::LaunchAppAction
An action to launch an app.
Corresponds to the JSON property launchApp
3142 3143 3144 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3142 def launch_app @launch_app end |
#title ⇒ Google::Apis::AndroidmanagementV1::UserFacingMessage
Provides a user-facing message with locale info. The maximum message length is
4096 characters.
Corresponds to the JSON property title
3148 3149 3150 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3148 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3155 3156 3157 3158 3159 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 3155 def update!(**args) @description = args[:description] if args.key?(:description) @launch_app = args[:launch_app] if args.key?(:launch_app) @title = args[:title] if args.key?(:title) end |