ehelply/models/note.rs
1/*
2 * eHelply SDK - 1.1.118
3 *
4 * eHelply SDK for SuperStack Services
5 *
6 * The version of the OpenAPI document: 1.1.118
7 * Contact: support@ehelply.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct Note {
16 #[serde(rename = "participant_uuid")]
17 pub participant_uuid: String,
18 #[serde(rename = "content")]
19 pub content: String,
20 #[serde(rename = "created_at")]
21 pub created_at: String,
22}
23
24impl Note {
25 pub fn new(participant_uuid: String, content: String, created_at: String) -> Note {
26 Note {
27 participant_uuid,
28 content,
29 created_at,
30 }
31 }
32}
33
34