ravendb
Version:
RavenDB client for Node.js
21 lines • 468 B
JavaScript
export class DeleteCompareExchangeCommandData {
_index;
id;
changeVector;
name;
constructor(key, index) {
this.id = key;
this._index = index;
}
get type() {
return "CompareExchangePUT";
}
serialize(conventions) {
return {
Id: this.id,
Index: this._index,
Type: "CompareExchangeDELETE"
};
}
}
//# sourceMappingURL=DeleteCompareExchangeCommandData.js.map