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:

  • source: (Integer)
  • target: (Integer)
  • kind: (enum_RelationshipKind)


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

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

Instance Attribute Details

#kindenum_RelationshipKind (readonly)

Returns the value of attribute kind.

Returns:

  • (enum_RelationshipKind)


616
617
618
# File 'sig/types.rbs', line 616

def kind
  @kind
end

#sourceInteger (readonly)

Returns the value of attribute source.

Returns:

  • (Integer)


614
615
616
# File 'sig/types.rbs', line 614

def source
  @source
end

#targetInteger (readonly)

Returns the value of attribute target.

Returns:

  • (Integer)


615
616
617
# File 'sig/types.rbs', line 615

def target
  @target
end