Struct google_classroom1::ModifyIndividualStudentsOptions[][src]

pub struct ModifyIndividualStudentsOptions {
    pub add_student_ids: Option<Vec<String>>,
    pub remove_student_ids: Option<Vec<String>>,
}

Contains fields to add or remove students from a course work or announcement where the assigneeMode is set to INDIVIDUAL_STUDENTS.

This type is not used in any activity, and only used as part of another schema.

Fields

Ids of students to be added as having access to this coursework/announcement.

Ids of students to be removed from having access to this coursework/announcement.

Trait Implementations

impl Default for ModifyIndividualStudentsOptions
[src]

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

impl Clone for ModifyIndividualStudentsOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ModifyIndividualStudentsOptions
[src]

Formats the value using the given formatter. Read more

impl Part for ModifyIndividualStudentsOptions
[src]

Auto Trait Implementations