Sha256: a299349ba4d76fa32a32add7472a47b498dd6d10560621416cc2e88de412de68

Contents?: true

Size: 483 Bytes

Versions: 2

Compression:

Stored size: 483 Bytes

Contents

module TD::Types
  # A link to an anchor on the same web page.
  #
  # @attr text [TD::Types::RichText] The link text.
  # @attr anchor_name [TD::Types::String] The anchor name.
  #   If the name is empty, the link should bring back to top.
  # @attr url [TD::Types::String] An HTTP URL, opening the anchor.
  class RichText::AnchorLink < RichText
    attribute :text, TD::Types::RichText
    attribute :anchor_name, TD::Types::String
    attribute :url, TD::Types::String
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/rich_text/anchor_link.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/rich_text/anchor_link.rb