use crate::client::Client;
use crate::error::Result;
use crate::http;
use nil_payload::request::cheat::behavior::*;
use nil_payload::response::cheat::behavior::*;
impl Client {
pub async fn cheat_get_build_steps(
&self,
req: CheatGetBuildStepsRequest,
) -> Result<CheatGetBuildStepsResponse> {
http::json_put("cheat-get-build-steps")
.body(req)
.server(self.server)
.maybe_authorization(self.authorization.as_ref())
.circuit_breaker(self.circuit_breaker())
.retry(&self.retry)
.user_agent(&self.user_agent)
.send()
.await
}
}