Class: Xberg::DocumentRevision

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDocumentRevision

Returns a new instance of DocumentRevision.

Parameters:



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

def initialize: (revision_id: String, ?author: String, ?timestamp: String, kind: RevisionKind, ?anchor: RevisionAnchor, delta: RevisionDelta) -> void

Instance Attribute Details

#anchorRevisionAnchor (readonly)

Returns the value of attribute anchor.

Returns:



1747
1748
1749
# File 'sig/types.rbs', line 1747

def anchor
  @anchor
end

#authorString (readonly)

Returns the value of attribute author.

Returns:

  • (String)


1744
1745
1746
# File 'sig/types.rbs', line 1744

def author
  @author
end

#deltaRevisionDelta (readonly)

Returns the value of attribute delta.

Returns:



1748
1749
1750
# File 'sig/types.rbs', line 1748

def delta
  @delta
end

#kindRevisionKind (readonly)

Returns the value of attribute kind.

Returns:



1746
1747
1748
# File 'sig/types.rbs', line 1746

def kind
  @kind
end

#revision_idString (readonly)

Returns the value of attribute revision_id.

Returns:

  • (String)


1743
1744
1745
# File 'sig/types.rbs', line 1743

def revision_id
  @revision_id
end

#timestampString (readonly)

Returns the value of attribute timestamp.

Returns:

  • (String)


1745
1746
1747
# File 'sig/types.rbs', line 1745

def timestamp
  @timestamp
end