openai_struct/models/create_fine_tuning_checkpoint_permission_request.rs
1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https:///platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https:///github.com/swagger-api/swagger-codegen.git
9 */
10
11#[allow(unused_imports)]
12use serde_json::Value;
13
14/// # on openapi.yaml
15///
16/// ```yaml
17/// CreateFineTuningCheckpointPermissionRequest:
18/// type: object
19/// additionalProperties: false
20/// properties:
21/// project_ids:
22/// type: array
23/// description: The project identifiers to grant access to.
24/// items:
25/// type: string
26/// required:
27/// - project_ids
28/// ```
29#[derive(Debug, Serialize, Deserialize)]
30pub struct CreateFineTuningCheckpointPermissionRequest {
31 /// The project identifiers to grant access to.
32 #[serde(rename = "project_ids")]
33 pub project_ids: Vec<String>,
34}