Module Values_0.SheetTextBoxSource

A text box.

Sourcetype nonrec t = {
  1. sheetTextBoxId : ShortRestrictiveResourceId.t;
    (*

    The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.

    *)
  2. content : SheetTextBoxContent.t option;
    (*

    The content that is displayed in the text box.

    *)
  3. interactions : TextBoxInteractionOptions.t option;
    (*

    The general textbox interactions setup for a textbox.

    *)
}
Sourceval context_ : string
Sourceval make : ?content:??? -> ?interactions:??? -> sheetTextBoxId:ShortRestrictiveResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ShortRestrictiveResourceId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) list ]) 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