make regen-apis

This commit is contained in:
OMGeeky
2023-10-23 12:55:17 +02:00
parent 8fc78fe0ae
commit c356d5fd0e
887 changed files with 9716 additions and 8753 deletions

View File

@@ -30,3 +30,6 @@ pub use method_builders::*;
mod call_builders;
pub use call_builders::*;
mod enums;
pub use enums::*;

View File

@@ -154,7 +154,7 @@ pub struct AttributeParameters {
/// What type of scores to return. If unset, defaults to probability scores.
#[serde(rename="scoreType")]
pub score_type: Option<String>,
pub score_type: Option<AttributeParameterScoreTypeEnum>,
}
impl client::Part for AttributeParameters {}
@@ -216,7 +216,7 @@ pub struct Score {
/// The type of the above value.
#[serde(rename="type")]
pub type_: Option<String>,
pub type_: Option<ScoreTypeEnum>,
/// Score value. Semantics described by type below.
pub value: Option<f32>,
@@ -357,7 +357,7 @@ pub struct TextEntry {
/// Type of the text field.
#[serde(rename="type")]
pub type_: Option<String>,
pub type_: Option<TextEntryTypeEnum>,
}
impl client::Part for TextEntry {}