预签名上传初始化响应
| 28 | |
| 29 | |
| 30 | class PresignUploadInitResponse(BaseModel): |
| 31 | """预签名上传初始化响应""" |
| 32 | upload_id: str |
| 33 | upload_url: str |
| 34 | mode: str # "direct" 或 "proxy" |
| 35 | save_path: str |
| 36 | expires_in: int # URL过期时间(秒) |
nothing calls this directly
no outgoing calls
no test coverage detected