| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | /* |
| 6: | * This file has been auto generated by Jane, |
| 7: | * |
| 8: | * Do no edit it directly. |
| 9: | */ |
| 10: | |
| 11: | namespace NxSys\Library\Clients\Brex\API\Expenses\Model; |
| 12: | |
| 13: | class ReceiptMatchRequest extends \ArrayObject |
| 14: | { |
| 15: | /** |
| 16: | * @var array |
| 17: | */ |
| 18: | protected $initialized = []; |
| 19: | |
| 20: | public function isInitialized($property): bool |
| 21: | { |
| 22: | return array_key_exists($property, $this->initialized); |
| 23: | } |
| 24: | /** |
| 25: | * The name of the receipt (with the file extension). It will be used in the matching result email. |
| 26: | * |
| 27: | * @var string |
| 28: | */ |
| 29: | protected $receiptName; |
| 30: | |
| 31: | /** |
| 32: | * The name of the receipt (with the file extension). It will be used in the matching result email. |
| 33: | */ |
| 34: | public function getReceiptName(): string |
| 35: | { |
| 36: | return $this->receiptName; |
| 37: | } |
| 38: | |
| 39: | /** |
| 40: | * The name of the receipt (with the file extension). It will be used in the matching result email. |
| 41: | */ |
| 42: | public function setReceiptName(string $receiptName): self |
| 43: | { |
| 44: | $this->initialized['receiptName'] = true; |
| 45: | $this->receiptName = $receiptName; |
| 46: | |
| 47: | return $this; |
| 48: | } |
| 49: | } |
| 50: |