Module Values.BenefitAllocationSummarySource

A summary view of a benefit allocation containing key information for list operations.

Sourcetype nonrec t = {
  1. id : BenefitAllocationId.t option;
    (*

    The unique identifier of the benefit allocation.

    *)
  2. catalog : CatalogName.t option;
    (*

    The catalog identifier that the benefit allocation belongs to.

    *)
  3. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the benefit allocation.

    *)
  4. status : BenefitAllocationStatus.t option;
    (*

    The current status of the benefit allocation.

    *)
  5. statusReason : String_.t option;
    (*

    Additional information explaining the current status of the benefit allocation.

    *)
  6. name : BenefitAllocationName.t option;
    (*

    The human-readable name of the benefit allocation.

    *)
  7. benefitId : BenefitId.t option;
    (*

    The identifier of the benefit that this allocation is based on.

    *)
  8. benefitApplicationId : BenefitApplicationId.t option;
    (*

    The identifier of the benefit application that resulted in this allocation.

    *)
  9. fulfillmentTypes : FulfillmentTypes.t option;
    (*

    The fulfillment types used for this benefit allocation.

    *)
  10. createdAt : Timestamp.t option;
    (*

    The timestamp when the benefit allocation was created.

    *)
  11. expiresAt : Timestamp.t option;
    (*

    The timestamp when the benefit allocation expires.

    *)
  12. applicableBenefitIds : BenefitIds.t option;
    (*

    The identifiers of the benefits applicable for this allocation.

    *)
}
Sourceval make : ?id:??? -> ?catalog:??? -> ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?name:??? -> ?benefitId:??? -> ?benefitApplicationId:??? -> ?fulfillmentTypes:??? -> ?createdAt:??? -> ?expiresAt:??? -> ?applicableBenefitIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of BenefitId.t ] list | `String of BenefitAllocationId.t | `Timestamp of Timestamp.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