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:



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

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:



1668
1669
1670
# File 'sig/types.rbs', line 1668

def anchor
  @anchor
end

#authorString (readonly)

Returns the value of attribute author.

Returns:

  • (String)


1665
1666
1667
# File 'sig/types.rbs', line 1665

def author
  @author
end

#deltaRevisionDelta (readonly)

Returns the value of attribute delta.

Returns:



1669
1670
1671
# File 'sig/types.rbs', line 1669

def delta
  @delta
end

#kindRevisionKind (readonly)

Returns the value of attribute kind.

Returns:



1667
1668
1669
# File 'sig/types.rbs', line 1667

def kind
  @kind
end

#revision_idString (readonly)

Returns the value of attribute revision_id.

Returns:

  • (String)


1664
1665
1666
# File 'sig/types.rbs', line 1664

def revision_id
  @revision_id
end

#timestampString (readonly)

Returns the value of attribute timestamp.

Returns:

  • (String)


1666
1667
1668
# File 'sig/types.rbs', line 1666

def timestamp
  @timestamp
end