tripo-api 0.1.4

Unofficial async Rust client for the Tripo 3D Generation API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `check_riggable` task variant. Wire `type`: `animate_prerigcheck`.

use serde::{Deserialize, Serialize};

/// Request body for `check_riggable`. Wire `type`: `animate_prerigcheck`.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[serde(deny_unknown_fields)]
pub struct CheckRiggableRequest {
    /// Source task id.
    pub original_model_task_id: String,
}