1 | <?php |
||
13 | class DatedMoneySpecification extends StructuredValue |
||
14 | { |
||
15 | /** |
||
16 | * The amount of money. |
||
17 | * |
||
18 | * @param float|int $amount |
||
19 | * |
||
20 | * @return static |
||
21 | * |
||
22 | * @see http://schema.org/amount |
||
23 | */ |
||
24 | public function amount($amount) |
||
28 | |||
29 | /** |
||
30 | * The currency in which the monetary amount is expressed (in 3-letter [ISO |
||
31 | * 4217](http://en.wikipedia.org/wiki/ISO_4217) format). |
||
32 | * |
||
33 | * @param string $currency |
||
34 | * |
||
35 | * @return static |
||
36 | * |
||
37 | * @see http://schema.org/currency |
||
38 | */ |
||
39 | public function currency($currency) |
||
43 | |||
44 | } |
||
45 |