Struct google_pubsub1::ModifyAckDeadlineRequest[][src]

pub struct ModifyAckDeadlineRequest {
    pub ack_deadline_seconds: Option<i32>,
    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. 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 minimum deadline you can specify is 0 seconds. The maximum deadline you can specify is 600 seconds (10 minutes).

List of acknowledgment IDs.

Trait Implementations

impl Default for ModifyAckDeadlineRequest
[src]

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

impl Clone for ModifyAckDeadlineRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ModifyAckDeadlineRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ModifyAckDeadlineRequest
[src]

Auto Trait Implementations