Struct rusoto_mturk::CreateAdditionalAssignmentsForHITRequest [] [src]

pub struct CreateAdditionalAssignmentsForHITRequest {
    pub hit_id: String,
    pub number_of_additional_assignments: Option<i64>,
    pub unique_request_token: Option<String>,
}

Fields

The ID of the HIT to extend.

The number of additional assignments to request for this HIT.

A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the extend HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return an error with a message containing the request ID.

Trait Implementations

impl Default for CreateAdditionalAssignmentsForHITRequest
[src]

[src]

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

impl Debug for CreateAdditionalAssignmentsForHITRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateAdditionalAssignmentsForHITRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations