@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
11 lines • 602 B
TypeScript
/** Query parameters for requesting tenant option's detail. */
export interface ITenantOptionDetailParams {
/**
* Determines in which context the value of a tenant option will be evaluated:
* - `current`: will return the value which is explicitly set in the current tenant,
* - `inherited`: will return the value which is inherited from the parent tenant,
* - by default it will return either the value from current tenant or from parent tenant (if the former is not set).
*/
evaluate?: 'current' | 'inherited';
}
//# sourceMappingURL=ITenantOptionDetailParams.d.ts.map