Module Values.LibraryTemplateBodyInputsSource

Configuration options for customizing the body content of a template from Meta's library.

Sourcetype nonrec t = {
  1. addContactNumber : AddContactNumber.t option;
    (*

    When true, includes a contact number in the template body.

    *)
  2. addSecurityRecommendation : AddSecurityRecommendation.t option;
    (*

    When true, includes security recommendations in the template body.

    *)
  3. codeExpirationMinutes : CodeExpirationMinutes.t option;
    (*

    The number of minutes until a verification code or OTP expires.

    *)
}
Sourceval make : ?addContactNumber:??? -> ?addLearnMoreLink:??? -> ?addSecurityRecommendation:??? -> ?addTrackPackageLink:??? -> ?codeExpirationMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AddContactNumber.t | `Integer of CodeExpirationMinutes.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