syntax = "v1" info ( title: "渲染"// TODO: add title desc: // TODO: add description author: "" email: "" ) import "basic.api" type RequestToUnity { } type RequestReadImages { } service render { //云渲染完了通知接口 @handler RenderNotifyHandler post /api/render/render_notify(RenderNotifyReq) returns (response); } //渲染完了通知接口 type RenderNotifyReq { Sign string `json:"sign"` Time int64 `json:"time"` Info NotifyInfo `json:"info"` } type NotifyInfo { TaskId string `json:"task_id"` //任务id Image string `json:"image"` }