# EdPrisonAddMultiplierCurrency

```java
/**
 * Gets the UUID of the player associated with the event.
 *
 * @return The UUID of the player.
 */
public UUID getUUID() {
    // Method implementation
}

/**
 * Checks if the event is cancelled.
 *
 * @return True if the event is cancelled, false otherwise.
 */
@Override
public boolean isCancelled() {
    // Method implementation
}

/**
 * Sets the cancellation state of the event.
 *
 * @param cancel True to cancel the event, false otherwise.
 */
@Override
public void setCancelled(boolean cancel) {
    // Method implementation
}

/**
 * Gets the currency associated with the event.
 *
 * @return The currency name.
 */
public String getCurrency() {
    // Method implementation
}

/**
 * Gets the amount associated with the event.
 *
 * @return The amount.
 */
public double getAmount() {
    // Method implementation
}

/**
 * Sets the amount associated with the event.
 *
 * @param amount The new amount.
 */
public void setAmount(double amount) {
    // Method implementation
}

/**
 * Gets the multiplier associated with the event.
 *
 * @return The multiplier.
 */
public double getMultiplier() {
    // Method implementation
}

/**
 * Adds a multiplier to the event's current multiplier.
 *
 * @param multiplier The multiplier to add.
 */
public void addMultiplier(double multiplier) {
    // Method implementation
}

/**
 * Sets the multiplier associated with the event.
 *
 * @param multiplier The new multiplier.
 */
public void setMultiplier(double multiplier) {
    // Method implementation
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://edseries-plugins.gitbook.io/p/developer-api/events/edprisonaddmultipliercurrency.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
