Class: Google::Apis::ClassroomV1::Feed

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/classroom_v1/classes.rb,
lib/google/apis/classroom_v1/representations.rb,
lib/google/apis/classroom_v1/representations.rb

Overview

A class of notifications that an application can register to receive. For example: "all roster changes for a domain".

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Feed

Returns a new instance of Feed.



935
936
937
# File 'lib/google/apis/classroom_v1/classes.rb', line 935

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#course_roster_changes_infoGoogle::Apis::ClassroomV1::CourseRosterChangesInfo

Information about a Feed with a feed_type of COURSE_ROSTER_CHANGES. Corresponds to the JSON property courseRosterChangesInfo



923
924
925
# File 'lib/google/apis/classroom_v1/classes.rb', line 923

def course_roster_changes_info
  @course_roster_changes_info
end

#course_work_changes_infoGoogle::Apis::ClassroomV1::CourseWorkChangesInfo

Information about a Feed with a feed_type of COURSE_WORK_CHANGES. Corresponds to the JSON property courseWorkChangesInfo



928
929
930
# File 'lib/google/apis/classroom_v1/classes.rb', line 928

def course_work_changes_info
  @course_work_changes_info
end

#feed_typeString

The type of feed. Corresponds to the JSON property feedType

Returns:

  • (String)


933
934
935
# File 'lib/google/apis/classroom_v1/classes.rb', line 933

def feed_type
  @feed_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



940
941
942
943
944
# File 'lib/google/apis/classroom_v1/classes.rb', line 940

def update!(**args)
  @course_roster_changes_info = args[:course_roster_changes_info] if args.key?(:course_roster_changes_info)
  @course_work_changes_info = args[:course_work_changes_info] if args.key?(:course_work_changes_info)
  @feed_type = args[:feed_type] if args.key?(:feed_type)
end