Skip to content

Commit

Permalink
Merge pull request #15 from clearbooks/ADHOC-2552-deprecate-some-attr…
Browse files Browse the repository at this point in the history
…ibutes-which-are-not-working-as-intended

deprecate the modifiedSince query parameter for the list invoice query, and the dateModified parameter for list invoice responses as they don't work as intended
  • Loading branch information
peter-horvath authored Aug 30, 2017
2 parents 6a5cce3 + 05c5625 commit c9d46f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/Clearbooks/Soap/1/0/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ class Clearbooks_Soap_1_0_Invoice
/** @var \DateTime */
public $dateDue = '';

/** @var \DateTime */
/**
* @deprecated
* @var \DateTime
*/
public $dateModified = '';

/** @var \DateTime */
Expand Down
5 changes: 4 additions & 1 deletion src/Clearbooks/Soap/1/0/InvoiceQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ class Clearbooks_Soap_1_0_InvoiceQuery
/** @var int */
public $offset = 0;

/** @var \DateTime */
/**
* @deprecated
* @var \DateTime
*/
public $modifiedSince = '';
}
//EOF InvoiceQuery.php

0 comments on commit c9d46f2

Please sign in to comment.