Class: Xberg::ExtractedUri

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeExtractedUri

Returns a new instance of ExtractedUri.

Parameters:

  • url: (String)
  • label: (String)
  • page: (Integer)
  • kind: (UriKind)


1776
# File 'sig/types.rbs', line 1776

def initialize: (url: String, ?label: String, ?page: Integer, kind: UriKind) -> void

Instance Attribute Details

#kindUriKind (readonly)

Returns the value of attribute kind.

Returns:



1774
1775
1776
# File 'sig/types.rbs', line 1774

def kind
  @kind
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


1772
1773
1774
# File 'sig/types.rbs', line 1772

def label
  @label
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1773
1774
1775
# File 'sig/types.rbs', line 1773

def page
  @page
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


1771
1772
1773
# File 'sig/types.rbs', line 1771

def url
  @url
end