@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
10 lines • 452 B
JavaScript
import { ResourceResponse } from "../../request/index.js";
export class ConflictResponse extends ResourceResponse {
constructor(resource, headers, statusCode, conflict, diagnostics) {
super(resource, headers, statusCode, diagnostics);
this.conflict = conflict;
}
/** A reference to the {@link Conflict} corresponding to the returned {@link ConflictDefinition}. */
conflict;
}
//# sourceMappingURL=ConflictResponse.js.map