Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/services/recurring/recurringApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { ScheduleAccountUpdaterResult } from "../../typings/recurring/models";
*/
export class RecurringApi extends Service {

private readonly API_BASEPATH: string = "https://pal-test.adyen.com/pal/servlet/Recurring/v68";
private readonly API_BASEPATH: string = "https://paltokenization-test.adyen.com/paltokenization/servlet/Recurring/v68";
private baseUrl: string;

public constructor(client: Client){
Expand Down
4 changes: 2 additions & 2 deletions src/typings/recurring/amount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

export class Amount {
/**
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes) of the amount.
*/
"currency": string;
/**
* The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
* The numeric value of the amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
*/
"value": number;

Expand Down
Loading