Module Values.UpdateBackendJobRequestSource

The request body for GetBackendJob.

Sourcetype nonrec t = {
  1. appId : string;
    (*

    The app ID.

    *)
  2. backendEnvironmentName : string;
    (*

    The name of the backend environment.

    *)
  3. jobId : string;
    (*

    The ID for the job.

    *)
  4. operation : string option;
    (*

    Filters the list of response objects to include only those with the specified operation name.

    *)
  5. status : string option;
    (*

    Filters the list of response objects to include only those with the specified status.

    *)
}
Sourceval context_ : string
Sourceval make : ?operation:??? -> ?status:??? -> appId:string -> backendEnvironmentName:string -> jobId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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