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:



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

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:



1782
1783
1784
# File 'sig/types.rbs', line 1782

def anchor
  @anchor
end

#authorString (readonly)

Returns the value of attribute author.

Returns:

  • (String)


1779
1780
1781
# File 'sig/types.rbs', line 1779

def author
  @author
end

#deltaRevisionDelta (readonly)

Returns the value of attribute delta.

Returns:



1783
1784
1785
# File 'sig/types.rbs', line 1783

def delta
  @delta
end

#kindRevisionKind (readonly)

Returns the value of attribute kind.

Returns:



1781
1782
1783
# File 'sig/types.rbs', line 1781

def kind
  @kind
end

#revision_idString (readonly)

Returns the value of attribute revision_id.

Returns:

  • (String)


1778
1779
1780
# File 'sig/types.rbs', line 1778

def revision_id
  @revision_id
end

#timestampString (readonly)

Returns the value of attribute timestamp.

Returns:

  • (String)


1780
1781
1782
# File 'sig/types.rbs', line 1780

def timestamp
  @timestamp
end