import * as z from "zod/v3"; import { Address, Address$Outbound } from "./address.js"; export type PayoutMerchant = { /** * The name of the merchant. */ name: string; /** * Unique value which identifies a merchant for processing transactions, also known as a MID. */ identificationNumber: string; /** * The phone number for the merchant which should be formatted according to the E164 number standard. */ phoneNumber: string; /** * Merchant website URL. */ url: string; /** * Value to explain charges or payments on bank statements. */ statementDescriptor: string; /** * Merchant classification for the type of goods or services it provides. */ merchantCategoryCode: string; /** * The address for the merchant. */ address?: Address | null | undefined; }; /** @internal */ export type PayoutMerchant$Outbound = { name: string; identification_number: string; phone_number: string; url: string; statement_descriptor: string; merchant_category_code: string; address?: Address$Outbound | null | undefined; }; /** @internal */ export declare const PayoutMerchant$outboundSchema: z.ZodType; export declare function payoutMerchantToJSON(payoutMerchant: PayoutMerchant): string; //# sourceMappingURL=payoutmerchant.d.ts.map