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)


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

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

Instance Attribute Details

#kindUriKind (readonly)

Returns the value of attribute kind.

Returns:



1709
1710
1711
# File 'sig/types.rbs', line 1709

def kind
  @kind
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


1707
1708
1709
# File 'sig/types.rbs', line 1707

def label
  @label
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1708
1709
1710
# File 'sig/types.rbs', line 1708

def page
  @page
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


1706
1707
1708
# File 'sig/types.rbs', line 1706

def url
  @url
end