Module Values.FaqSummarySource

Summary information for frequently asked questions and answers included in an index.

Sourcetype nonrec t = {
  1. id : FaqId.t option;
    (*

    The identifier of the FAQ.

    *)
  2. name : FaqName.t option;
    (*

    The name that you assigned the FAQ when you created or updated the FAQ.

    *)
  3. status : FaqStatus.t option;
    (*

    The current status of the FAQ. When the status is ACTIVE the FAQ is ready for use.

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

    The Unix timestamp when the FAQ was created.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp when the FAQ was last updated.

    *)
  6. fileFormat : FaqFileFormat.t option;
    (*

    The file type used to create the FAQ.

    *)
  7. languageCode : LanguageCode.t option;
    (*

    The code for a language. This shows a supported language for the FAQ document as part of the summary information for FAQs. English is supported by default. For more information on supported languages, including their codes, see Adding documents in languages other than English.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?fileFormat:??? -> ?languageCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FaqId.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