CouchDBClientCouchUpdateResponseStructureCouchUpdateResponseA model for the response returned by CouchDB after performing insert, update, or delete operations. This structure conforms to Codable and Sendable for serialization and thread safety.struct CouchUpdateResponseTopicsInitializersinit(from: any Decoder) throwsInstance Propertieslet id: StringThe unique identifier of the CouchDB document affected by the operation. This property contains the document’s ID.let ok: BoolIndicates whether the operation was successful. This property is true if the operation was successful; otherwise, false.let rev: StringThe MVCC (Multi-Version Concurrency Control) revision token for the document. This token is updated after each successful operation and is used to track document versions.