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)


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

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

Instance Attribute Details

#kindUriKind (readonly)

Returns the value of attribute kind.

Returns:



1720
1721
1722
# File 'sig/types.rbs', line 1720

def kind
  @kind
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


1718
1719
1720
# File 'sig/types.rbs', line 1718

def label
  @label
end

#pageInteger (readonly)

Returns the value of attribute page.

Returns:

  • (Integer)


1719
1720
1721
# File 'sig/types.rbs', line 1719

def page
  @page
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


1717
1718
1719
# File 'sig/types.rbs', line 1717

def url
  @url
end