import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the job responsibilities of a business representative. */ export type RepresentativeResponsibilities = { /** * Indicates whether this individual has significant management responsibilities within the business. */ isController?: boolean | undefined; /** * If `true`, this field indicates that the individual has a business ownership stake of at least 25% in the * * @remarks * business. If the representative does not own at least 25% of the business, this field should be `false`. */ isOwner?: boolean | undefined; /** * The percentage of ownership this individual has in the business (required if `isOwner` is `true`). */ ownershipPercentage?: number | undefined; jobTitle?: string | undefined; }; /** @internal */ export declare const RepresentativeResponsibilities$inboundSchema: z.ZodType; /** @internal */ export type RepresentativeResponsibilities$Outbound = { isController?: boolean | undefined; isOwner?: boolean | undefined; ownershipPercentage?: number | undefined; jobTitle?: string | undefined; }; /** @internal */ export declare const RepresentativeResponsibilities$outboundSchema: z.ZodType; export declare function representativeResponsibilitiesToJSON(representativeResponsibilities: RepresentativeResponsibilities): string; export declare function representativeResponsibilitiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=representativeresponsibilities.d.ts.map