Class: Google::Apis::AndroidmanagementV1::SetupAction

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

Overview

An action executed during setup.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SetupAction

Returns a new instance of SetupAction.



5358
5359
5360
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5358

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

Instance Attribute Details

#descriptionGoogle::Apis::AndroidmanagementV1::UserFacingMessage

Provides a user-facing message with locale info. The maximum message length is 4096 characters. Corresponds to the JSON property description



5345
5346
5347
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5345

def description
  @description
end

#launch_appGoogle::Apis::AndroidmanagementV1::LaunchAppAction

An action to launch an app. Corresponds to the JSON property launchApp



5350
5351
5352
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5350

def launch_app
  @launch_app
end

#titleGoogle::Apis::AndroidmanagementV1::UserFacingMessage

Provides a user-facing message with locale info. The maximum message length is 4096 characters. Corresponds to the JSON property title



5356
5357
5358
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5356

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5363
5364
5365
5366
5367
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 5363

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