/** * Request schema for POST auto-recharge/trigger/. */ export type AutoRechargeTriggerRequest = { /** * The unique key of the platform. Defaults to 'main'. */ platform_key?: string; /** * Optional. When set, perform manual top-up: charge this amount (user USD) and add credits. No threshold, spending limit, or cooldown. Omit to run normal auto-recharge once. */ amount_usd?: string; };