Mongo Db Collection Info Response
data class MongoDbCollectionInfoResponse(val averageDocumentSize: Double, val dataSize: Double, val databaseName: String, val documentCount: Double, val isCapped: Boolean, val isSystemCollection: Boolean, val isView: Boolean, val name: String, val qualifiedName: String, val shardKey: MongoDbShardKeyInfoResponse? = null, val supportsSharding: Boolean, val viewOf: String? = null)
Describes a supported collection within a MongoDB database
Constructors
Link copied to clipboard
fun MongoDbCollectionInfoResponse(averageDocumentSize: Double, dataSize: Double, databaseName: String, documentCount: Double, isCapped: Boolean, isSystemCollection: Boolean, isView: Boolean, name: String, qualifiedName: String, shardKey: MongoDbShardKeyInfoResponse? = null, supportsSharding: Boolean, viewOf: String? = null)