import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OAuth2ClientPublic = { /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; clientId: string; clientName: string | null; clientUri: string | null; logoUri: string | null; tosUri: string | null; policyUri: string | null; }; /** @internal */ export declare const OAuth2ClientPublic$inboundSchema: z.ZodMiniType; export declare function oAuth2ClientPublicFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=oauth2clientpublic.d.ts.map