deriv_api_schema/available_service_item.rs
1
2// Generated automatically by schema_generator.rs - DO NOT EDIT.
3// Source: ./deriv-api-docs/config/v3/kyc_auth_status/receive.json
4
5// Use direct crate names for imports within generated files
6use serde::{Deserialize, Serialize};
7
8
9
10
11// Import shared types from the *same* crate
12
13// It's a struct
14#[derive(Debug, Clone, Serialize, Deserialize)]
15#[serde(rename_all = "snake_case")]
16pub struct AvailableServiceItem {
17 /// The specific document type name expected by the service.\n
18 // Correct serde attribute construction - Use helper
19
20 pub document_type: String,
21 /// The name of the service supporting this document type.\n
22 // Correct serde attribute construction - Use helper
23
24 pub service: String,
25}
26