Module Values.AmendBenefitApplicationInputSource

Modifies an existing benefit application by applying amendments to specific fields while maintaining revision control.

Sourcetype nonrec t = {
  1. catalog : CatalogName.t;
    (*

    The catalog identifier that specifies which benefit catalog the application belongs to.

    *)
  2. clientToken : AmendBenefitApplicationInputClientTokenString.t;
    (*

    A unique, case-sensitive identifier to ensure idempotent processing of the amendment request.

    *)
  3. revision : String_.t;
    (*

    The current revision number of the benefit application to ensure optimistic concurrency control.

    *)
  4. identifier : BenefitApplicationIdentifier.t;
    (*

    The unique identifier of the benefit application to be amended.

    *)
  5. amendmentReason : AmendBenefitApplicationInputAmendmentReasonString.t;
    (*

    A descriptive reason explaining why the benefit application is being amended.

    *)
  6. amendments : AmendmentList.t;
    (*

    A list of specific field amendments to apply to the benefit application.

    *)
}
Sourceval context_ : string
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of CatalogName.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