Struct rusoto_mturk::UpdateNotificationSettingsRequest[][src]

pub struct UpdateNotificationSettingsRequest {
    pub active: Option<bool>,
    pub hit_type_id: String,
    pub notification: Option<NotificationSpecification>,
}

Fields

Specifies whether notifications are sent for HITs of this HIT type, according to the notification specification. You must specify either the Notification parameter or the Active parameter for the call to UpdateNotificationSettings to succeed.

The ID of the HIT type whose notification specification is being updated.

The notification specification for the HIT type.

Trait Implementations

impl Default for UpdateNotificationSettingsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateNotificationSettingsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateNotificationSettingsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateNotificationSettingsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations