Class: Google::Apis::ClassroomV1::Link

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

Overview

URL item.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Link

Returns a new instance of Link.



1193
1194
1195
# File 'generated/google/apis/classroom_v1/classes.rb', line 1193

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

Instance Attribute Details

#thumbnail_urlString

URL of a thumbnail image of the target URL. Read-only. Corresponds to the JSON property thumbnailUrl

Returns:

  • (String)


1180
1181
1182
# File 'generated/google/apis/classroom_v1/classes.rb', line 1180

def thumbnail_url
  @thumbnail_url
end

#titleString

Title of the target of the URL. Read-only. Corresponds to the JSON property title

Returns:

  • (String)


1185
1186
1187
# File 'generated/google/apis/classroom_v1/classes.rb', line 1185

def title
  @title
end

#urlString

URL to link to. This must be a valid UTF-8 string containing between 1 and 2024 characters. Corresponds to the JSON property url

Returns:

  • (String)


1191
1192
1193
# File 'generated/google/apis/classroom_v1/classes.rb', line 1191

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1198
1199
1200
1201
1202
# File 'generated/google/apis/classroom_v1/classes.rb', line 1198

def update!(**args)
  @thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url)
  @title = args[:title] if args.key?(:title)
  @url = args[:url] if args.key?(:url)
end