import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; import { TaxRateEntityType } from "./tax-rate-entity-type.js"; import { TaxRateResponse } from "./tax-rate-response.js"; export type TaxAssociationResponse = { /** * Whether this tax should be automatically applied */ autoApply?: boolean | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; /** * Currency */ currency?: string | undefined; /** * EndDate is the optional date until which this association is active */ endDate?: Date | undefined; /** * ID of the entity this tax rate applies to */ entityId?: string | undefined; entityType?: TaxRateEntityType | undefined; /** * EnvironmentID is the ID of the environment this tax rate config belongs to */ environmentId?: string | undefined; /** * ID of the ent. */ id?: string | undefined; /** * Metadata holds the value of the "metadata" field. */ metadata?: { [k: string]: string; } | undefined; /** * Priority for tax resolution (lower number = higher priority) */ priority?: number | undefined; /** * StartDate is the date from which this association is active */ startDate?: Date | undefined; status?: Status | undefined; taxRate?: TaxRateResponse | undefined; /** * Reference to the TaxRate entity */ taxRateId?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const TaxAssociationResponse$inboundSchema: z.ZodMiniType; export declare function taxAssociationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tax-association-response.d.ts.map