Module Values.EntitlementSource

Describes a resource entitled for use with a license.

Sourcetype nonrec t = {
  1. name : String_.t;
    (*

    Entitlement name.

    *)
  2. value : String_.t option;
    (*

    Entitlement resource. Use only if the unit is None.

    *)
  3. maxCount : Long.t option;
    (*

    Maximum entitlement count. Use if the unit is not None.

    *)
  4. overage : BoxBoolean.t option;
    (*

    Indicates whether overages are allowed.

    *)
  5. unit : EntitlementUnit.t;
    (*

    Entitlement unit.

    *)
  6. allowCheckIn : BoxBoolean.t option;
    (*

    Indicates whether check-ins are allowed.

    *)
}
Sourceval context_ : string
Sourceval make : ?value:??? -> ?maxCount:??? -> ?overage:??? -> ?allowCheckIn:??? -> name:String_.t -> unit:EntitlementUnit.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxBoolean.t | `Enum of string | `Long of Long.t | `String of String_.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