Module Values.ActivitySummarySource

The summary of activities.

Sourcetype nonrec t = {
  1. activityId : ActivityId.t option;
    (*

    A unique identifier that identifies the activity.

    *)
  2. title : GenericString.t option;
    (*

    The title of the activity.

    *)
  3. reward : ActivityReward.t option;
    (*

    The reward for the activity.

    *)
  4. status : ActivityStatus.t option;
    (*

    The current status of the activity.

    *)
}
Sourceval make : ?activityId:??? -> ?title:??? -> ?reward:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ActivityId.t | `Structure of (string * [> `Structure of (string * [> `Double of GenericDouble.t | `Enum of string ]) list ]) 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