Module Values.ProfileQueryFailuresSource

Object that holds failures for membership.

Sourcetype nonrec t = {
  1. profileId : ProfileId.t option;
    (*

    The profile id the failure belongs to.

    *)
  2. message : GetSegmentMembershipMessage.t option;
    (*

    A message describing the failure.

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

    The status describing the failure.

    *)
}
Sourceval make : ?profileId:??? -> ?message:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GetSegmentMembershipStatus.t | `String of ProfileId.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