Module Values.RecallBenefitApplicationInputSource

Recalls a submitted benefit application, returning it to draft status for further modifications.

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

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

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

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

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

    The unique identifier of the benefit application to recall.

    *)
  4. reason : String_.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> catalog:CatalogName.t -> identifier:BenefitApplicationIdentifier.t -> reason:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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