CBLDocument
@interface CBLDocument : NSObject <CBLDictionary, NSMutableCopying>A Couchbase Lite document. The CBLDocument is immutable.
- 
                  
                  The document’s ID. DeclarationObjective-C @property (readonly, nonatomic) NSString *_Nonnull id;
- 
                  
                  Is the document deleted? DeclarationObjective-C @property (readonly, nonatomic) BOOL isDeleted;
- 
                  
                  Sequence number of the document in the database. This indicates how recently the document has been changed: every time any document is updated, the database assigns it the next sequential sequence number. Thus, if a document’s sequenceproperty changes that means it’s been changed (on-disk); and if one document’ssequenceis greater than another’s, that means it was changed more recently.DeclarationObjective-C @property (readonly, nonatomic) uint64_t sequence;
- 
                  
                  Returns a mutable copy of the document. DeclarationObjective-C - (nonnull CBLMutableDocument *)toMutable;Return ValueThe CBLMutableDocument object. 
- 
                  
                  Undocumented DeclarationObjective-C @interface CBLDocument : NSObject <CBLDictionary, NSMutableCopying>
 CBLDocument Class Reference
        CBLDocument Class Reference