-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected correlatedInvoices type from string to array of integers.
- Loading branch information
Showing
9 changed files
with
311 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
|
||
namespace Firebed\AadeMyData\Models; | ||
|
||
/** | ||
* @version 1.0.7 | ||
*/ | ||
class EntityType extends Type | ||
{ | ||
/** | ||
* @return int Κατηγορία Οντότητας | ||
* | ||
* @version 1.0.7 | ||
*/ | ||
public function getType(): int | ||
{ | ||
return $this->get('type'); | ||
} | ||
|
||
/** | ||
* Κατηγορία Οντότητας | ||
* <ol> | ||
* <li>Φορολογικός Εκπρόσωπος</li> | ||
* <li>Διαμεσολαβητής</li> | ||
* </ol> | ||
* | ||
* @param int $type Κατηγορία Οντότητας | ||
* | ||
* @version 1.0.7 | ||
*/ | ||
public function setType(int $type): void | ||
{ | ||
$this->put('type', $type); | ||
} | ||
|
||
/** | ||
* @return Party | ||
* | ||
* @version 1.0.7 | ||
*/ | ||
public function getEntityData(): Party | ||
{ | ||
return $this->get('entityData'); | ||
} | ||
|
||
/** | ||
* @param Party $entityData | ||
* | ||
* @version 1.0.7 | ||
*/ | ||
public function setEntityData(Party $entityData): void | ||
{ | ||
$this->put('entityData', $entityData); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.