import { APIResource } from "../core/resource.mjs"; import { PageCursorURL, PagePromise } from "../core/pagination.mjs"; import { RequestOptions } from "../internal/request-options.mjs"; /** * Availability of API features to the company or Partners. */ export declare class Entitlements extends APIResource { /** * A list of entitlements. * * - Requires: `API Tier 1` */ list(options?: RequestOptions): PagePromise; } export type EntitlementListResponsesPageCursorURL = PageCursorURL; export interface EntitlementListResponse { /** * Identifier field */ id: string; /** * Description of the entitlement */ description: string; /** * Display name of the entitlement */ display_name: string; } export declare namespace Entitlements { export { type EntitlementListResponse as EntitlementListResponse, type EntitlementListResponsesPageCursorURL as EntitlementListResponsesPageCursorURL, }; } //# sourceMappingURL=entitlements.d.mts.map