Struct google_classroom1::Registration[][src]

pub struct Registration {
    pub feed: Option<Feed>,
    pub registration_id: Option<String>,
    pub expiry_time: Option<String>,
    pub cloud_pubsub_topic: Option<CloudPubsubTopic>,
}

An instruction to Classroom to send notifications from the feed to the provided destination.

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

Specification for the class of notifications that Classroom should deliver to the destination.

A server-generated unique identifier for this Registration.

Read-only.

The time until which the Registration is effective.

This is a read-only field assigned by the server.

The Cloud Pub/Sub topic that notifications are to be sent to.

Trait Implementations

impl Default for Registration
[src]

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

impl Clone for Registration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Registration
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Registration
[src]

impl Resource for Registration
[src]

impl ResponseResult for Registration
[src]

Auto Trait Implementations