class IOSConfigProfile::CommandPayload
Attributes
command[R]
Public Class Methods
new(command)
click to toggle source
# File lib/ios_config_profile/command_payload.rb, line 9 def initialize(command) @command = command require_attributes :command merge! command_payload end
Private Instance Methods
command_payload()
click to toggle source
# File lib/ios_config_profile/command_payload.rb, line 17 def command_payload { "Command" => command, "CommandUUID" => uuid, } end