/** * @example * { * database: "acme_corp", * collection: "team_docs" * } */ export interface DeleteCollectionDatabasesRequest { /** Database identifier */ database: string; /** Collection identifier */ collection: string; }