Struct google_pubsub1_beta2::ModifyAckDeadlineRequest [] [src]

pub struct ModifyAckDeadlineRequest {
    pub ack_deadline_seconds: Option<i32>,
    pub ack_id: Option<String>,
    pub ack_ids: Option<Vec<String>>,
}

Request for the ModifyAckDeadline method.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The new ack deadline with respect to the time this request was sent to the Pub/Sub system. Must be >= 0. For example, if the value is 10, the new ack deadline will expire 10 seconds after the ModifyAckDeadline call was made. Specifying zero may immediately make the message available for another pull request.

The acknowledgment ID. Either this or ack_ids must be populated, but not both.

List of acknowledgment IDs.

Trait Implementations

impl Debug for ModifyAckDeadlineRequest
[src]

Formats the value using the given formatter.

impl Clone for ModifyAckDeadlineRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ModifyAckDeadlineRequest
[src]

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

impl RequestValue for ModifyAckDeadlineRequest
[src]