import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Contains details regarding the service level for the carrier account. */ export type CarrierAccountServiceLevel = { /** * Service level name, e.g. `Priority Mail` or `FedEx Ground®`. * * @remarks * A service level commonly defines the transit time of a Shipment (e.g., Express vs. Standard), along with other properties. * These names vary depending on the provider.
* See Service Levels. */ name?: string | undefined; /** * Service level token, e.g. `usps_priority` or `fedex_ground`.
* * @remarks * See Service Levels. */ token?: string | undefined; /** * Whether or not the service level supports return labels. */ supportsReturnLabels?: boolean | undefined; }; /** @internal */ export declare const CarrierAccountServiceLevel$inboundSchema: z.ZodMiniType; export declare function carrierAccountServiceLevelFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=carrieraccountservicelevel.d.ts.map