Class: Xberg::DocumentRelationship

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDocumentRelationship

Returns a new instance of DocumentRelationship.

Parameters:



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

def initialize: (source: Integer, target: Integer, kind: RelationshipKind) -> void

Instance Attribute Details

#kindRelationshipKind (readonly)

Returns the value of attribute kind.

Returns:



831
832
833
# File 'sig/types.rbs', line 831

def kind
  @kind
end

#sourceInteger (readonly)

Returns the value of attribute source.

Returns:

  • (Integer)


829
830
831
# File 'sig/types.rbs', line 829

def source
  @source
end

#targetInteger (readonly)

Returns the value of attribute target.

Returns:

  • (Integer)


830
831
832
# File 'sig/types.rbs', line 830

def target
  @target
end