Module Values.VoteSummarySource

Properties of an individual vote that a member cast for a proposal. Applies only to Hyperledger Fabric.

Sourcetype nonrec t = {
  1. vote : VoteValue.t option;
    (*

    The vote value, either YES or NO.

    *)
  2. memberName : NetworkMemberNameString.t option;
    (*

    The name of the member that cast the vote.

    *)
  3. memberId : ResourceIdString.t option;
    (*

    The unique identifier of the member that cast the vote.

    *)
}
Sourceval make : ?vote:??? -> ?memberName:??? -> ?memberId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NetworkMemberNameString.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