Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
AdyenAutomationBot committed Jan 8, 2024
1 parent d2aee8b commit 0aa9d7b
Show file tree
Hide file tree
Showing 45 changed files with 6,875 additions and 139 deletions.
623 changes: 623 additions & 0 deletions src/Adyen/Model/Checkout/ApplePayDonations.php

Large diffs are not rendered by default.

12 changes: 4 additions & 8 deletions src/Adyen/Model/Checkout/BillDeskDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,8 @@ public function getModelName()
return self::$openAPIModelName;
}

public const TYPE_BILLDESK_ONLINE = 'billdesk_online';
public const TYPE_BILLDESK_WALLET = 'billdesk_wallet';
public const TYPE_ONLINEBANKING_IN = 'onlinebanking_IN';
public const TYPE_WALLET_IN = 'wallet_IN';
public const TYPE_ONLINE = 'billdesk_online';
public const TYPE_WALLET = 'billdesk_wallet';

/**
* Gets allowable values of the enum
Expand All @@ -240,10 +238,8 @@ public function getModelName()
public function getTypeAllowableValues()
{
return [
self::TYPE_BILLDESK_ONLINE,
self::TYPE_BILLDESK_WALLET,
self::TYPE_ONLINEBANKING_IN,
self::TYPE_WALLET_IN,
self::TYPE_ONLINE,
self::TYPE_WALLET,
];
}
/**
Expand Down
4 changes: 4 additions & 0 deletions src/Adyen/Model/Checkout/CardDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,10 @@ public function getModelName()

public const FUNDING_SOURCE_CREDIT = 'credit';
public const FUNDING_SOURCE_DEBIT = 'debit';
public const TYPE_BCMC = 'bcmc';
public const TYPE_SCHEME = 'scheme';
public const TYPE_NETWORK_TOKEN = 'networkToken';
public const TYPE_GIFTCARD = 'giftcard';
public const TYPE_CARD = 'card';

/**
Expand All @@ -349,8 +351,10 @@ public function getFundingSourceAllowableValues()
public function getTypeAllowableValues()
{
return [
self::TYPE_BCMC,
self::TYPE_SCHEME,
self::TYPE_NETWORK_TOKEN,
self::TYPE_GIFTCARD,
self::TYPE_CARD,
];
}
Expand Down
Loading

0 comments on commit 0aa9d7b

Please sign in to comment.