Module Values.BuildNotDeletedSource

Information about a build that could not be successfully deleted.

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

    The ID of the build that could not be successfully deleted.

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

    Additional information about the build that could not be successfully deleted.

    *)
}
Sourceval make : ?id:??? -> ?statusCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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