Module Values.ProposalActionsSource

The actions to carry out if a proposal is APPROVED. Applies only to Hyperledger Fabric.

Sourcetype nonrec t = {
  1. invitations : InviteActionList.t option;
    (*

    The actions to perform for an APPROVED proposal to invite an Amazon Web Services account to create a member and join the network.

    *)
  2. removals : RemoveActionList.t option;
    (*

    The actions to perform for an APPROVED proposal to remove a member from the network, which deletes the member and all associated member resources from the network.

    *)
}
Sourceval make : ?invitations:??? -> ?removals:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of PrincipalString.t ]) 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