Module Values.UpdateBenefitApplicationInputSource

Updates an existing benefit application with new information 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 : UpdateBenefitApplicationInputClientTokenString.t;
    (*

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

    *)
  3. name : BenefitApplicationName.t option;
    (*

    The updated human-readable name for the benefit application.

    *)
  4. description : BenefitApplicationDescription.t option;
    (*

    The updated detailed description of the benefit application.

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

    The unique identifier of the benefit application to update.

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

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

    *)
  7. benefitApplicationDetails : Document.t option;
    (*

    Updated detailed information and requirements specific to the benefit being requested.

    *)
  8. partnerContacts : UpdateBenefitApplicationInputPartnerContactsList.t option;
    (*

    Updated contact information for partner representatives responsible for this benefit application.

    *)
  9. fileDetails : UpdateBenefitApplicationInputFileDetailsList.t option;
    (*

    Updated supporting documents and files attached to the benefit application.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?benefitApplicationDetails:??? -> ?partnerContacts:??? -> ?fileDetails:??? -> catalog:CatalogName.t -> clientToken:UpdateBenefitApplicationInputClientTokenString.t -> identifier:BenefitApplicationIdentifier.t -> revision:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ContactEmail.t ]) list ] list | `String of CatalogName.t | `Structure of 'a 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