Module Values.LayoutItemSource

The layout object that contains LayoutDefinitionName, Description, DisplayName, IsDefault, LayoutType, Tags, CreatedAt, LastUpdatedAt

Sourcetype nonrec t = {
  1. layoutDefinitionName : Name.t option;
    (*

    The unique name of the layout.

    *)
  2. description : SensitiveText.t option;
    (*

    The description of the layout

    *)
  3. displayName : DisplayName.t option;
    (*

    The display name of the layout

    *)
  4. isDefault : Boolean.t option;
    (*

    If set to true for a layout, this layout will be used by default to view data. If set to false, then layout will not be used by default but it can be used to view data by explicit selection on UI.

    *)
  5. layoutType : LayoutType.t option;
    (*

    The type of layout that can be used to view data under customer profiles domain.

    *)
  6. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
  7. createdAt : Timestamp.t option;
    (*

    The timestamp of when the layout was created.

    *)
  8. lastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of when the layout was most recently updated.

    *)
}
Sourceval make : ?layoutDefinitionName:??? -> ?description:??? -> ?displayName:??? -> ?isDefault:??? -> ?layoutType:??? -> ?tags:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Timestamp of Timestamp.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