Module Values.UserSettingSource

Describes an action and whether the action is enabled or disabled for users during their streaming sessions.

Sourcetype nonrec t = {
  1. action : Action.t;
    (*

    The action that is enabled or disabled.

    *)
  2. permission : Permission.t;
    (*

    Indicates whether the action is enabled or disabled.

    *)
  3. maximumLength : Integer.t option;
    (*

    Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session. This can be specified only for the CLIPBOARD_COPY_FROM_LOCAL_DEVICE and CLIPBOARD_COPY_TO_LOCAL_DEVICE actions. This defaults to 20,971,520 (20 MB) when unspecified and the permission is ENABLED. This can't be specified when the permission is DISABLED. The value can be between 1 and 20,971,520 (20 MB).

    *)
}
Sourceval context_ : string
Sourceval make : ?maximumLength:??? -> action:Action.t -> permission:Permission.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t