import * as z from "zod/v4-mini"; export type GetEntityIntegrationMappingsRequest = { /** * Entity type (customer, plan, invoice, subscription, payment, credit_note, addon, item, item_price, price) */ entityType: string; /** * Entity ID */ entityId: string; }; /** @internal */ export type GetEntityIntegrationMappingsRequest$Outbound = { entity_type: string; entity_id: string; }; /** @internal */ export declare const GetEntityIntegrationMappingsRequest$outboundSchema: z.ZodMiniType; export declare function getEntityIntegrationMappingsRequestToJSON(getEntityIntegrationMappingsRequest: GetEntityIntegrationMappingsRequest): string; //# sourceMappingURL=get-entity-integration-mappings-op.d.ts.map