Skip to main content

uddf_sdk/entities/first_name/
structure.rs

1use serde::Serialize;
2
3/// Represents a first name.
4///
5/// https://www.streit.cc/extern/uddf_v321/en/firstname.html
6#[derive(Debug, Serialize)]
7pub struct FirstName {
8    #[serde(rename = "$text", skip_serializing_if = "Option::is_none")]
9    pub value: Option<String>,
10}