1 | <?php |
||
12 | class MonetaryAmountDistribution extends BaseType |
||
13 | { |
||
14 | /** |
||
15 | * The currency in which the monetary amount is expressed. |
||
16 | * |
||
17 | * Use standard formats: [ISO 4217 currency |
||
18 | * format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker |
||
19 | * symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for |
||
20 | * cryptocurrencies e.g. "BTC"; well known names for [Local Exchange |
||
21 | * Tradings |
||
22 | * Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) |
||
23 | * (LETS) and other currency types e.g. "Ithaca HOUR". |
||
24 | * |
||
25 | * @param string|string[] $currency |
||
26 | * |
||
27 | * @return static |
||
28 | * |
||
29 | * @see http://schema.org/currency |
||
30 | */ |
||
31 | public function currency($currency) |
||
35 | |||
36 | } |
||
37 |