Skip to content

Commit

Permalink
Merge pull request #1 from collector-bank/feature/oath
Browse files Browse the repository at this point in the history
Moved capture and credit to REST api
  • Loading branch information
kristoffer124 authored Oct 27, 2023
2 parents a7a681f + 71d6b71 commit 7183912
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Config/ConfigInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ public function getUsername(): string;
public function getPassword(): string;


/**
*
* Gets access key
*
* @return string $accessKey
*/
public function getAccessKey(): string;

/**
*
* Gets the storeId
Expand Down
1 change: 1 addition & 0 deletions src/Invoice/Article/Article.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public function toArray()
'ArticleId' => $this->articleId,
'Description' => $this->description,
'Quantity' => $this->quantity,
'UnitPrice' => $this->unitPrice,
];
}
}

0 comments on commit 7183912

Please sign in to comment.