// Code generated by ogen, DO NOT EDIT. package api import ( "bytes" "net/http" "github.com/go-faster/jx" ht "github.com/ogen-go/ogen/http" ) func encodeCreateScriptRequest( req *ScriptCreate, r *http.Request, ) error { const contentType = "application/json" e := new(jx.Encoder) { req.Encode(e) } encoded := e.Bytes() ht.SetBody(r, bytes.NewReader(encoded), contentType) return nil } func encodeCreateScriptPolicyRequest( req *ScriptPolicyCreate, r *http.Request, ) error { const contentType = "application/json" e := new(jx.Encoder) { req.Encode(e) } encoded := e.Bytes() ht.SetBody(r, bytes.NewReader(encoded), contentType) return nil } func encodeCreateSubmissionRequest( req *SubmissionCreate, r *http.Request, ) error { const contentType = "application/json" e := new(jx.Encoder) { req.Encode(e) } encoded := e.Bytes() ht.SetBody(r, bytes.NewReader(encoded), contentType) return nil } func encodeUpdateScriptRequest( req *ScriptUpdate, r *http.Request, ) error { const contentType = "application/json" e := new(jx.Encoder) { req.Encode(e) } encoded := e.Bytes() ht.SetBody(r, bytes.NewReader(encoded), contentType) return nil } func encodeUpdateScriptPolicyRequest( req *ScriptPolicyUpdate, r *http.Request, ) error { const contentType = "application/json" e := new(jx.Encoder) { req.Encode(e) } encoded := e.Bytes() ht.SetBody(r, bytes.NewReader(encoded), contentType) return nil }