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)


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

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

Instance Attribute Details

#kindUriKind (readonly)

Returns the value of attribute kind.

Returns:



1764
1765
1766
# File 'sig/types.rbs', line 1764

def kind
  @kind
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


1762
1763
1764
# File 'sig/types.rbs', line 1762

def label
  @label
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1763
1764
1765
# File 'sig/types.rbs', line 1763

def page
  @page
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


1761
1762
1763
# File 'sig/types.rbs', line 1761

def url
  @url
end