Module Values.ChangeSpecificationSource

A union that contains the specification details for different types of changes.

Sourcetype nonrec t = {
  1. member : MemberChangeSpecification.t option;
    (*

    The member change specification when the change type is MEMBER.

    *)
  2. collaboration : CollaborationChangeSpecification.t option;
    (*

    The collaboration configuration changes being requested. Currently, this only supports modifying which change types are auto-approved for the collaboration.

    *)
}
Sourceval make : ?member:??? -> ?collaboration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of AccountId.t ]) 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