import { APIResource } from "../../core/resource.mjs"; import { PagePromise, SinglePage } from "../../core/pagination.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class BaseSeats extends APIResource { static readonly _key: readonly ['zeroTrust', 'seats']; /** * Removes a user from a Zero Trust seat when both `access_seat` and `gateway_seat` * are set to false. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const seat of client.zeroTrust.seats.edit({ * account_id: '699d98642c564d2e855e9661899b7252', * body: [ * { * access_seat: false, * gateway_seat: false, * seat_uid: 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * }, * ], * })) { * // ... * } * ``` */ edit(params: SeatEditParams, options?: RequestOptions): PagePromise; } export declare class Seats extends BaseSeats { } export type SeatsSinglePage = SinglePage; export interface Seat { /** * True if the seat is part of Access. */ access_seat?: boolean; created_at?: string; /** * True if the seat is part of Gateway. */ gateway_seat?: boolean; /** * The unique API identifier for the Zero Trust seat. */ seat_uid?: string; updated_at?: string; } export interface SeatEditParams { /** * Path param: Identifier. */ account_id: string; /** * Body param */ body: Array; } export declare namespace SeatEditParams { interface Body { /** * True if the seat is part of Access. */ access_seat: boolean; /** * True if the seat is part of Gateway. */ gateway_seat: boolean; /** * The unique API identifier for the Zero Trust seat. */ seat_uid: string; } } export declare namespace Seats { export { type Seat as Seat, type SeatsSinglePage as SeatsSinglePage, type SeatEditParams as SeatEditParams, }; } //# sourceMappingURL=seats.d.mts.map