class Google::Apis::AndroidmanagementV1::SetupAction
An action executed during setup.
Attributes
description[RW]
Provides a user-facing message with locale info. The maximum message length is 4096 characters. Corresponds to the JSON property `description` @return [Google::Apis::AndroidmanagementV1::UserFacingMessage]
launch_app[RW]
An action to launch an app. Corresponds to the JSON property `launchApp` @return [Google::Apis::AndroidmanagementV1::LaunchAppAction]
title[RW]
Provides a user-facing message with locale info. The maximum message length is 4096 characters. Corresponds to the JSON property `title` @return [Google::Apis::AndroidmanagementV1::UserFacingMessage]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 3421 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 3426 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