Skip to content

Commit

Permalink
new fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenz committed Jul 13, 2023
1 parent 81c272f commit ff3c7e7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/zugferd211/Model/HeaderTradeSettlement.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@

class HeaderTradeSettlement
{
/**
* @Type("string")
* @XmlElement(cdata = false, namespace = "urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100")
* @SerializedName("CreditorReferenceID")
*/
public ?string $creditorReferenceID = null;

/**
* @Type("string")
* @XmlElement(cdata = false, namespace = "urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100")
Expand Down
7 changes: 7 additions & 0 deletions src/zugferd211/Model/TradePaymentTerms.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,11 @@ class TradePaymentTerms
* @JMS\SerializedName("DueDateDateTime")
*/
public ?DateTime $dueDate = null;

/**
* @JMS\Type("string")
* @JMS\XmlElement(cdata=false, namespace="urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100")
* @JMS\SerializedName("DirectDebitMandateID")
*/
public ?string $directDebitMandateID = null;
}

0 comments on commit ff3c7e7

Please sign in to comment.