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:



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

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:



1721
1722
1723
# File 'sig/types.rbs', line 1721

def anchor
  @anchor
end

#authorString (readonly)

Returns the value of attribute author.

Returns:

  • (String)


1718
1719
1720
# File 'sig/types.rbs', line 1718

def author
  @author
end

#deltaRevisionDelta (readonly)

Returns the value of attribute delta.

Returns:



1722
1723
1724
# File 'sig/types.rbs', line 1722

def delta
  @delta
end

#kindRevisionKind (readonly)

Returns the value of attribute kind.

Returns:



1720
1721
1722
# File 'sig/types.rbs', line 1720

def kind
  @kind
end

#revision_idString (readonly)

Returns the value of attribute revision_id.

Returns:

  • (String)


1717
1718
1719
# File 'sig/types.rbs', line 1717

def revision_id
  @revision_id
end

#timestampString (readonly)

Returns the value of attribute timestamp.

Returns:

  • (String)


1719
1720
1721
# File 'sig/types.rbs', line 1719

def timestamp
  @timestamp
end