Skip to content

Commit

Permalink
Update TradePaymentTerms.php
Browse files Browse the repository at this point in the history
change order DueDateDateTime and ApplicableTradePaymentDiscountTerms
  • Loading branch information
torstenkoehler authored Nov 11, 2024
1 parent 3767491 commit 42d70e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/zugferd2/Model/TradePaymentTerms.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ class TradePaymentTerms
#[JMS\SerializedName('Description')]
public ?string $description = null;

#[JMS\Type(TradePaymentDiscountTerms::class)]
#[JMS\XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')]
#[JMS\SerializedName('ApplicableTradePaymentDiscountTerms')]
public ?TradePaymentDiscountTerms $applicableTradePaymentDiscountTerms = null;

#[JMS\Type(DateTime::class)]
#[JMS\XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')]
#[JMS\SerializedName('DueDateDateTime')]
public ?DateTime $dueDate = null;

#[JMS\Type(TradePaymentDiscountTerms::class)]
#[JMS\XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')]
#[JMS\SerializedName('ApplicableTradePaymentDiscountTerms')]
public ?TradePaymentDiscountTerms $applicableTradePaymentDiscountTerms = null;

#[JMS\Type('string')]
#[JMS\XmlElement(cdata: false, namespace: 'urn:un:unece:uncefact:data:standard:ReusableAggregateBusinessInformationEntity:100')]
#[JMS\SerializedName('DirectDebitMandateID')]
Expand Down

0 comments on commit 42d70e3

Please sign in to comment.