Struct rusoto_workdocs::CreateNotificationSubscriptionRequest[][src]

pub struct CreateNotificationSubscriptionRequest {
    pub endpoint: String,
    pub organization_id: String,
    pub protocol: String,
    pub subscription_type: String,
}

Fields

The endpoint to receive the notifications. If the protocol is HTTPS, the endpoint is a URL that begins with "https://".

The ID of the organization.

The protocol to use. The supported value is https, which delivers JSON-encoded messages using HTTPS POST.

The notification type.

Trait Implementations

impl Default for CreateNotificationSubscriptionRequest
[src]

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

impl Debug for CreateNotificationSubscriptionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateNotificationSubscriptionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateNotificationSubscriptionRequest
[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