Module Values_1.ReferenceSummarySource

Contains summary information about a reference. ReferenceSummary contains only one non null field between the URL and attachment based on the reference type.

Sourcetype nonrec t = {
  1. url : UrlReference.t option;
    (*

    Information about the reference when the referenceType is URL. Otherwise, null.

    *)
  2. attachment : Values_0.AttachmentReference.t option;
    (*

    Information about the reference when the referenceType is ATTACHMENT. Otherwise, null.

    *)
  3. emailMessage : EmailMessageReference.t option;
    (*

    Information about the reference when the referenceType is EMAIL_MESSAGE. Otherwise, null.

    *)
  4. emailMessageRedacted : EmailMessageReference.t option;
  5. emailMessagePlainText : EmailMessageReference.t option;
  6. emailMessagePlainTextRedacted : EmailMessageReference.t option;
  7. string : StringReference.t option;
    (*

    Information about a reference when the referenceType is STRING. Otherwise, null.

    *)
  8. number : NumberReference.t option;
    (*

    Information about a reference when the referenceType is NUMBER. Otherwise, null.

    *)
  9. date : DateReference.t option;
    (*

    Information about a reference when the referenceType is DATE. Otherwise, null.

    *)
  10. email : EmailReference.t option;
    (*

    Information about a reference when the referenceType is EMAIL. Otherwise, null.

    *)
}
Sourceval make : ?url:??? -> ?attachment:??? -> ?emailMessage:??? -> ?emailMessageRedacted:??? -> ?emailMessagePlainText:??? -> ?emailMessagePlainTextRedacted:??? -> ?string:??? -> ?number:??? -> ?date:??? -> ?email:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of Values_0.ReferenceKey.t ]) 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