Class: Google::Apis::TasksV1::Task::Link
- Inherits:
-
Object
- Object
- Google::Apis::TasksV1::Task::Link
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/tasks_v1/classes.rb,
lib/google/apis/tasks_v1/representations.rb,
lib/google/apis/tasks_v1/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
The description.
-
#link ⇒ String
The URL.
-
#type ⇒ String
Type of the link, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Link
constructor
A new instance of Link.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Link
Returns a new instance of Link.
268 269 270 |
# File 'lib/google/apis/tasks_v1/classes.rb', line 268 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The description. In HTML speak: Everything between and .
Corresponds to the JSON property description
256 257 258 |
# File 'lib/google/apis/tasks_v1/classes.rb', line 256 def description @description end |
#link ⇒ String
The URL.
Corresponds to the JSON property link
261 262 263 |
# File 'lib/google/apis/tasks_v1/classes.rb', line 261 def link @link end |
#type ⇒ String
Type of the link, e.g. "email".
Corresponds to the JSON property type
266 267 268 |
# File 'lib/google/apis/tasks_v1/classes.rb', line 266 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
273 274 275 276 277 |
# File 'lib/google/apis/tasks_v1/classes.rb', line 273 def update!(**args) @description = args[:description] if args.key?(:description) @link = args[:link] if args.key?(:link) @type = args[:type] if args.key?(:type) end |