## The symptom

Calling `create_ewallet_charge` on the Xendit Python client raised:

```
AttributeError: type object 'EWallet' has no attribute 'create_ewallet_charge'
```

## Why

Conflicting `EWallet` classes in the SDK's imports: the method was not visible
on the class you imported. A maintainer confirmed it was an import issue with
conflicting EWallet classes and raised a fix PR.

## The fix

Upgrade xendit-python to v0.2.2 or later. The fix was released in v0.2.2 and
the maintainer confirmed it on the thread.

## Workaround if you cannot upgrade yet

Call the static method directly:

```python
from xendit.models.ewallet.ewallet import EWallet

EWallet.create_ewallet_charge(...)
```

with your API key as usual.

## The general lesson

`AttributeError` on a documented SDK method, where the method clearly exists in
the codebase, points at an import conflict (two classes with the same name),
not a missing feature. Import from the defining module directly as a
workaround.