Updated Perl Client AddAlternateCurrencyValue (markdown)

Logan
2018-01-14 18:59:48 -08:00
parent f89aa91785
commit e37343cecc
+4 -4
@@ -2,12 +2,12 @@ adds a client alternate currency value.
### Arguments
**Name**|**Type**|**Description**
:---|:---|:---
uint32 currency_id||int32 amount||
currency_id||amount||
### Example
```perl
my $uint32 currency_id = 1;
my $int32 amount = 1;
my $currency_id = 1;
my $amount = 1;
$client->AddAlternateCurrencyValue($uint32 currency_id, $int32 amount); # Returns void
$client->AddAlternateCurrencyValue($currency_id, $amount); # Returns void
```