[][src]Struct rusoto_alexaforbusiness::SkillDetails

pub struct SkillDetails {
    pub bullet_points: Option<Vec<String>>,
    pub developer_info: Option<DeveloperInfo>,
    pub end_user_license_agreement: Option<String>,
    pub generic_keywords: Option<Vec<String>>,
    pub invocation_phrase: Option<String>,
    pub new_in_this_version_bullet_points: Option<Vec<String>>,
    pub product_description: Option<String>,
    pub release_date: Option<String>,
    pub reviews: Option<HashMap<String, String>>,
    pub skill_types: Option<Vec<String>>,
}

Granular information about the skill.

Fields

bullet_points: Option<Vec<String>>

The details about what the skill supports organized as bullet points.

developer_info: Option<DeveloperInfo>

The details about the developer that published the skill.

end_user_license_agreement: Option<String>

The URL of the end user license agreement.

generic_keywords: Option<Vec<String>>

The generic keywords associated with the skill that can be used to find a skill.

invocation_phrase: Option<String>

The phrase used to trigger the skill.

new_in_this_version_bullet_points: Option<Vec<String>>

The updates added in bullet points.

product_description: Option<String>

The description of the product.

release_date: Option<String>

The date when the skill was released.

reviews: Option<HashMap<String, String>>

This member has been deprecated.

The list of reviews for the skill, including Key and Value pair.

skill_types: Option<Vec<String>>

The types of skills.

Trait Implementations

impl Clone for SkillDetails[src]

impl Debug for SkillDetails[src]

impl Default for SkillDetails[src]

impl<'de> Deserialize<'de> for SkillDetails[src]

impl PartialEq<SkillDetails> for SkillDetails[src]

impl StructuralPartialEq for SkillDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.