class Google::Apis::ClassroomV1::Form
Google
Forms item.
Attributes
form_url[RW]
URL of the form. Corresponds to the JSON property `formUrl` @return [String]
response_url[RW]
URL of the form responses document. Only set if respsonses have been recorded and only when the requesting user is an editor of the form. Read-only. Corresponds to the JSON property `responseUrl` @return [String]
thumbnail_url[RW]
URL of a thumbnail image of the Form
. Read-only. Corresponds to the JSON property `thumbnailUrl` @return [String]
title[RW]
Title of the Form
. Read-only. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 954 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/classroom_v1/classes.rb, line 959 def update!(**args) @form_url = args[:form_url] if args.key?(:form_url) @response_url = args[:response_url] if args.key?(:response_url) @thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url) @title = args[:title] if args.key?(:title) end