Module Values.MobileSdkReleaseSource

Information for a release of the mobile SDK, including release notes and tags. The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

Sourcetype nonrec t = {
  1. releaseVersion : VersionKeyString.t option;
    (*

    The release version.

    *)
  2. timestamp : Timestamp.t option;
    (*

    The timestamp of the release.

    *)
  3. releaseNotes : ReleaseNotes.t option;
    (*

    Notes describing the release.

    *)
  4. tags : TagList.t option;
    (*

    Tags that are associated with the release.

    *)
}
Sourceval make : ?releaseVersion:??? -> ?timestamp:??? -> ?releaseNotes:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of VersionKeyString.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