-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added AdditionalReferencedDocument
- Loading branch information
Lorenz Schäfer
authored
Dec 15, 2020
1 parent
2cd7b1a
commit 0491de3
Showing
3 changed files
with
66 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace Easybill\ZUGFeRD211\Model; | ||
|
||
use JMS\Serializer\Annotation as JMS; | ||
|
||
class BinaryObject | ||
{ | ||
/** | ||
* @JMS\Type("string") | ||
* @JMS\XmlAttribute | ||
* @JMS\SerializedName("mimeCode") | ||
*/ | ||
public string $mimeCode; | ||
|
||
/** | ||
* @JMS\Type("string") | ||
* @JMS\XmlAttribute | ||
* @JMS\SerializedName("filename") | ||
*/ | ||
public string $filename; | ||
|
||
/** | ||
* @JMS\Type("string") | ||
* @JMS\XmlValue(cdata=false) | ||
*/ | ||
public string $value; | ||
} |
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