Class: Google::Apis::TasksV1::Task::Link

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#descriptionString

The description. In HTML speak: Everything between and . Corresponds to the JSON property description

Returns:

  • (String)


256
257
258
# File 'lib/google/apis/tasks_v1/classes.rb', line 256

def description
  @description
end

The URL. Corresponds to the JSON property link

Returns:

  • (String)


261
262
263
# File 'lib/google/apis/tasks_v1/classes.rb', line 261

def link
  @link
end

#typeString

Type of the link, e.g. "email". Corresponds to the JSON property type

Returns:

  • (String)


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