Class: Google::Apis::ChatV1::RichLinkMetadata

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

Overview

A rich link to a resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RichLinkMetadata

Returns a new instance of RichLinkMetadata.



4438
4439
4440
# File 'lib/google/apis/chat_v1/classes.rb', line 4438

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

Instance Attribute Details

Data for Chat space links. Corresponds to the JSON property chatSpaceLinkData



4421
4422
4423
# File 'lib/google/apis/chat_v1/classes.rb', line 4421

def chat_space_link_data
  @chat_space_link_data
end

Data for Google Drive links. Corresponds to the JSON property driveLinkData



4426
4427
4428
# File 'lib/google/apis/chat_v1/classes.rb', line 4426

def drive_link_data
  @drive_link_data
end

The rich link type. Corresponds to the JSON property richLinkType

Returns:

  • (String)


4431
4432
4433
# File 'lib/google/apis/chat_v1/classes.rb', line 4431

def rich_link_type
  @rich_link_type
end

#uriString

The URI of this link. Corresponds to the JSON property uri

Returns:

  • (String)


4436
4437
4438
# File 'lib/google/apis/chat_v1/classes.rb', line 4436

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4443
4444
4445
4446
4447
4448
# File 'lib/google/apis/chat_v1/classes.rb', line 4443

def update!(**args)
  @chat_space_link_data = args[:chat_space_link_data] if args.key?(:chat_space_link_data)
  @drive_link_data = args[:drive_link_data] if args.key?(:drive_link_data)
  @rich_link_type = args[:rich_link_type] if args.key?(:rich_link_type)
  @uri = args[:uri] if args.key?(:uri)
end