*/ public function rules(): array { return [ 'amount' => ['required', 'integer', 'min:1'], 'currency' => ['sometimes', 'nullable', 'string', 'max:16'], 'idempotent_key' => ['required', 'string', 'max:64'], ]; } }