@itwin/insights-client
Version:
Insights client for the iTwin platform
16 lines • 844 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/**
* Values for return preference used in `Prefer` header. The header value is formed by joining
* `return=` and the enum value.
*/
export var PreferReturn;
(function (PreferReturn) {
/** Instructs the server to return minimal entity representation. */
PreferReturn["Minimal"] = "minimal";
/** Instructs the server to return full entity representation. */
PreferReturn["Representation"] = "representation";
})(PreferReturn || (PreferReturn = {}));
//# sourceMappingURL=Common.js.map