import * as z from "zod/v4-mini"; /** * Schema to attach a custom field to a resource. */ export type AttachedCustomFieldCreate = { /** * ID of the custom field to attach. */ customFieldId: string; /** * Whether the value is required for this custom field. */ required: boolean; }; /** @internal */ export type AttachedCustomFieldCreate$Outbound = { custom_field_id: string; required: boolean; }; /** @internal */ export declare const AttachedCustomFieldCreate$outboundSchema: z.ZodMiniType; export declare function attachedCustomFieldCreateToJSON(attachedCustomFieldCreate: AttachedCustomFieldCreate): string; //# sourceMappingURL=attachedcustomfieldcreate.d.ts.map