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