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:



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

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

Instance Attribute Details

#kindRelationshipKind (readonly)

Returns the value of attribute kind.

Returns:



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

def kind
  @kind
end

#sourceInteger (readonly)

Returns the value of attribute source.

Returns:

  • (Integer)


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

def source
  @source
end

#targetInteger (readonly)

Returns the value of attribute target.

Returns:

  • (Integer)


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

def target
  @target
end