import { APIResource } from "../core/resource.js"; import * as CompaniesAPI from "./companies.js"; import { APIPromise } from "../core/api-promise.js"; import { RequestOptions } from "../internal/request-options.js"; /** * Provides the user's SSO information */ export declare class SSOMeResource extends APIResource { /** * SSO information of the current user * * - Requires: `API Tier 1` * - Expandable fields: `company` */ list(query?: SSOMeListParams | null | undefined, options?: RequestOptions): APIPromise; } export interface SSOMe { /** * Identifier field */ id: string; /** * Record creation date */ created_at: string; /** * Record update date */ updated_at: string; /** * The company of the user. * * Expandable field */ company?: CompaniesAPI.Company; /** * The company ID of the user. */ company_id?: string; /** * The user's work email address. */ work_email?: string; } export interface SSOMeListParams { cursor?: string; expand?: string; } export declare namespace SSOMeResource { export { type SSOMe as SSOMe, type SSOMeListParams as SSOMeListParams }; } //# sourceMappingURL=sso-me.d.ts.map