#[non_exhaustive]pub struct BotRecommendationSummary {
pub bot_recommendation_status: Option<BotRecommendationStatus>,
pub bot_recommendation_id: Option<String>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
}Expand description
A summary of the bot recommendation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bot_recommendation_status: Option<BotRecommendationStatus>The status of the bot recommendation.
If the status is Failed, then the reasons for the failure are listed in the failureReasons field.
bot_recommendation_id: Option<String>The unique identifier of the bot recommendation to be updated.
creation_date_time: Option<DateTime>A timestamp of the date and time that the bot recommendation was created.
last_updated_date_time: Option<DateTime>A timestamp of the date and time that the bot recommendation was last updated.
Implementations
The status of the bot recommendation.
If the status is Failed, then the reasons for the failure are listed in the failureReasons field.
The unique identifier of the bot recommendation to be updated.
A timestamp of the date and time that the bot recommendation was created.
A timestamp of the date and time that the bot recommendation was last updated.
Creates a new builder-style object to manufacture BotRecommendationSummary
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for BotRecommendationSummary
impl Send for BotRecommendationSummary
impl Sync for BotRecommendationSummary
impl Unpin for BotRecommendationSummary
impl UnwindSafe for BotRecommendationSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more