Module Values.UpdatePackageScopeRequestSource

Updates the scope of a package. Scope of the package defines users who can view and associate a package.

Sourcetype nonrec t = {
  1. packageID : PackageID.t;
    (*

    ID of the package whose scope is being updated.

    *)
  2. operation : PackageScopeOperationEnum.t;
    (*

    The operation to perform on the package scope (e.g., add/remove/override users).

    *)
  3. packageUserList : PackageUserList.t;
    (*

    List of users to be added or removed from the package scope.

    *)
}
Sourceval context_ : string
Sourceval make : packageID:PackageID.t -> operation:PackageScopeOperationEnum.t -> packageUserList:PackageUserList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of PackageUser.t ] list | `String of PackageID.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