Struct google_classroom1::Announcement[][src]

pub struct Announcement {
    pub update_time: Option<String>,
    pub alternate_link: Option<String>,
    pub course_id: Option<String>,
    pub text: Option<String>,
    pub scheduled_time: Option<String>,
    pub creation_time: Option<String>,
    pub assignee_mode: Option<String>,
    pub creator_user_id: Option<String>,
    pub state: Option<String>,
    pub materials: Option<Vec<Material>>,
    pub individual_students_options: Option<IndividualStudentsOptions>,
    pub id: Option<String>,
}

Announcement created by a teacher for students of the course

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

Timestamp of the most recent change to this announcement.

Read-only.

Absolute link to this announcement in the Classroom web UI. This is only populated if state is PUBLISHED.

Read-only.

Identifier of the course.

Read-only.

Description of this announcement. The text must be a valid UTF-8 string containing no more than 30,000 characters.

Optional timestamp when this announcement is scheduled to be published.

Timestamp when this announcement was created.

Read-only.

Assignee mode of the announcement. If unspecified, the default value is ALL_STUDENTS.

Identifier for the user that created the announcement.

Read-only.

Status of this announcement. If unspecified, the default state is DRAFT.

Additional materials.

Announcements must have no more than 20 material items.

Identifiers of students with access to the announcement. This field is set only if assigneeMode is INDIVIDUAL_STUDENTS. If the assigneeMode is INDIVIDUAL_STUDENTS, then only students specified in this field will be able to see the announcement.

Classroom-assigned identifier of this announcement, unique per course.

Read-only.

Trait Implementations

impl Default for Announcement
[src]

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

impl Clone for Announcement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Announcement
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Announcement
[src]

impl ResponseResult for Announcement
[src]

Auto Trait Implementations