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:



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

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:



1712
1713
1714
# File 'sig/types.rbs', line 1712

def anchor
  @anchor
end

#authorString (readonly)

Returns the value of attribute author.

Returns:

  • (String)


1709
1710
1711
# File 'sig/types.rbs', line 1709

def author
  @author
end

#deltaRevisionDelta (readonly)

Returns the value of attribute delta.

Returns:



1713
1714
1715
# File 'sig/types.rbs', line 1713

def delta
  @delta
end

#kindRevisionKind (readonly)

Returns the value of attribute kind.

Returns:



1711
1712
1713
# File 'sig/types.rbs', line 1711

def kind
  @kind
end

#revision_idString (readonly)

Returns the value of attribute revision_id.

Returns:

  • (String)


1708
1709
1710
# File 'sig/types.rbs', line 1708

def revision_id
  @revision_id
end

#timestampString (readonly)

Returns the value of attribute timestamp.

Returns:

  • (String)


1710
1711
1712
# File 'sig/types.rbs', line 1710

def timestamp
  @timestamp
end