Skip to content

Commit

Permalink
Creditnote fields
Browse files Browse the repository at this point in the history
  • Loading branch information
LasseRafn committed Dec 11, 2017
1 parent 87a148b commit 9700800
Showing 1 changed file with 33 additions and 28 deletions.
61 changes: 33 additions & 28 deletions src/Models/Creditnote.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,40 @@

class Creditnote extends Model
{
protected $entity = 'sales/creditnotes';
protected $primaryKey = 'Guid';
protected $entity = 'sales/creditnotes';
protected $primaryKey = 'Guid';

public $CreditNoteFor;
public $Status;
public $ContactGuid;
public $Guid;
public $TimeStamp;
public $CreatedAt;
public $UpdatedAt;
public $DeletedAt;
public $Number;
public $ContactName;
public $TotalExclVat;
public $TotalVatableAmount;
public $TotalInclVat;
public $TotalNonVatableAmount;
public $TotalVat;
public $CreditNoteFor;
public $Status;
public $ContactGuid;
public $Guid;
public $TimeStamp;
public $CreatedAt;
public $UpdatedAt;
public $DeletedAt;
public $Number;
public $ContactName;
public $TotalExclVat;
public $TotalVatableAmount;
public $TotalInclVat;
public $TotalNonVatableAmount;
public $TotalVat;
public $PaymentDate;
public $Type;
public $TotalInclVatInDkk;
public $TotalExclVatInDkk;
public $MailOutStatus;

/** @var array */
public $TotalLines;
public $Currency;
public $Language;
public $ExternalReference;
public $Description;
public $Comment;
public $Date;
/** @var array */
public $TotalLines;
public $Currency;
public $Language;
public $ExternalReference;
public $Description;
public $Comment;
public $Date;

/** @var array */
public $ProductLines;
public $Address;
/** @var array */
public $ProductLines;
public $Address;
}

0 comments on commit 9700800

Please sign in to comment.