import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Scope } from "./scope.js"; export type OrganizationAccessToken = { /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; id: string; scopes: Array; expiresAt: Date | null; comment: string; lastUsedAt: Date | null; /** * The organization ID. */ organizationId: string; }; /** @internal */ export declare const OrganizationAccessToken$inboundSchema: z.ZodMiniType; export declare function organizationAccessTokenFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organizationaccesstoken.d.ts.map