Values_0.UpdateCommandRequestSourceUpdate information about a command or mark a command for deprecation.
type nonrec t = {commandId : CommandId.t;The unique identifier of the command to be updated.
*)displayName : DisplayName.t option;The new user-friendly name to use in the console for the command.
*)description : CommandDescription.t option;A short text description of the command.
*)deprecated : DeprecationFlag.t option;A boolean that you can use to specify whether to deprecate a command.
*)}val make :
?displayName:??? ->
?description:??? ->
?deprecated:??? ->
commandId:CommandId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of DeprecationFlag.t | `String of CommandId.t ])
list ]