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:



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

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

Instance Attribute Details

#anchorRevisionAnchor? (readonly)

Returns the value of attribute anchor.

Returns:



626
627
628
# File 'sig/types.rbs', line 626

def anchor
  @anchor
end

#authorString? (readonly)

Returns the value of attribute author.

Returns:

  • (String, nil)


623
624
625
# File 'sig/types.rbs', line 623

def author
  @author
end

#deltaRevisionDelta (readonly)

Returns the value of attribute delta.

Returns:



627
628
629
# File 'sig/types.rbs', line 627

def delta
  @delta
end

#kindenum_RevisionKind (readonly)

Returns the value of attribute kind.

Returns:

  • (enum_RevisionKind)


625
626
627
# File 'sig/types.rbs', line 625

def kind
  @kind
end

#revision_idString (readonly)

Returns the value of attribute revision_id.

Returns:

  • (String)


622
623
624
# File 'sig/types.rbs', line 622

def revision_id
  @revision_id
end

#timestampString? (readonly)

Returns the value of attribute timestamp.

Returns:

  • (String, nil)


624
625
626
# File 'sig/types.rbs', line 624

def timestamp
  @timestamp
end