pub struct Glossary {
pub glossary_id: String,
pub name: String,
pub ready: bool,
pub source_lang: String,
pub target_lang: String,
pub creation_time: DateTime<Utc>,
pub entry_count: u64,
}
Expand description
Representation of a glossary.
Fields§
§glossary_id: String
A unique ID assigned to a glossary.
name: String
Name associated with the glossary.
ready: bool
Indicates if the newly created glossary can already be used in translate requests. If the created glossary is not yet ready, you have to wait and check the ready status of the glossary before using it in a translate request.
source_lang: String
The language in which the source texts in the glossary are specified.
target_lang: String
The language in which the target texts in the glossary are specified.
creation_time: DateTime<Utc>
The creation time of the glossary.
entry_count: u64
The number of entries in the glossary.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Glossary
impl<'de> Deserialize<'de> for Glossary
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more