-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from shellrent/sct_delayed
Sct delayed (bonifici ordinari)
- Loading branch information
Showing
11 changed files
with
612 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<?php | ||
|
||
namespace Shellrent\OpenBanking\DataSet; | ||
|
||
class CurrencySet { | ||
public const AFN = 'AFN'; | ||
public const ALL = 'ALL'; | ||
public const DZD = 'DZD'; | ||
public const USD = 'USD'; | ||
public const EUR = 'EUR'; | ||
public const AOA = 'AOA'; | ||
public const XCD = 'XCD'; | ||
public const ARS = 'ARS'; | ||
public const AMD = 'AMD'; | ||
public const AWG = 'AWG'; | ||
public const AUD = 'AUD'; | ||
public const AZN = 'AZN'; | ||
public const BSD = 'BSD'; | ||
public const BHD = 'BHD'; | ||
public const BDT = 'BDT'; | ||
public const BBD = 'BBD'; | ||
public const BYN = 'BYN'; | ||
public const BZD = 'BZD'; | ||
public const XOF = 'XOF'; | ||
public const BMD = 'BMD'; | ||
public const BTN = 'BTN'; | ||
public const INR = 'INR'; | ||
public const BOB = 'BOB'; | ||
public const BOV = 'BOV'; | ||
public const BAM = 'BAM'; | ||
public const BWP = 'BWP'; | ||
public const NOK = 'NOK'; | ||
public const BRL = 'BRL'; | ||
public const BND = 'BND'; | ||
public const BGN = 'BGN'; | ||
public const BIF = 'BIF'; | ||
public const CVE = 'CVE'; | ||
public const KHR = 'KHR'; | ||
public const XAF = 'XAF'; | ||
public const CAD = 'CAD'; | ||
public const KYD = 'KYD'; | ||
public const CLF = 'CLF'; | ||
public const CLP = 'CLP'; | ||
public const CNY = 'CNY'; | ||
public const COP = 'COP'; | ||
public const COU = 'COU'; | ||
public const KMF = 'KMF'; | ||
public const CDF = 'CDF'; | ||
public const NZD = 'NZD'; | ||
public const CRC = 'CRC'; | ||
public const HRK = 'HRK'; | ||
public const CUC = 'CUC'; | ||
public const CUP = 'CUP'; | ||
public const ANG = 'ANG'; | ||
public const CZK = 'CZK'; | ||
public const DKK = 'DKK'; | ||
public const DJF = 'DJF'; | ||
public const DOP = 'DOP'; | ||
public const EGP = 'EGP'; | ||
public const SVC = 'SVC'; | ||
public const ERN = 'ERN'; | ||
public const ETB = 'ETB'; | ||
public const FKP = 'FKP'; | ||
public const FJD = 'FJD'; | ||
public const XPF = 'XPF'; | ||
public const GMD = 'GMD'; | ||
public const GEL = 'GEL'; | ||
public const GHS = 'GHS'; | ||
public const GIP = 'GIP'; | ||
public const GTQ = 'GTQ'; | ||
public const GBP = 'GBP'; | ||
public const GNF = 'GNF'; | ||
public const GYD = 'GYD'; | ||
public const HTG = 'HTG'; | ||
public const HNL = 'HNL'; | ||
public const HKD = 'HKD'; | ||
public const HUF = 'HUF'; | ||
public const ISK = 'ISK'; | ||
public const IDR = 'IDR'; | ||
public const XDR = 'XDR'; | ||
public const IRR = 'IRR'; | ||
public const IQD = 'IQD'; | ||
public const ILS = 'ILS'; | ||
public const JMD = 'JMD'; | ||
public const JPY = 'JPY'; | ||
public const JOD = 'JOD'; | ||
public const KZT = 'KZT'; | ||
public const KES = 'KES'; | ||
public const KPW = 'KPW'; | ||
public const KRW = 'KRW'; | ||
public const KWD = 'KWD'; | ||
public const KGS = 'KGS'; | ||
public const LAK = 'LAK'; | ||
public const LBP = 'LBP'; | ||
public const LSL = 'LSL'; | ||
public const ZAR = 'ZAR'; | ||
public const LRD = 'LRD'; | ||
public const LYD = 'LYD'; | ||
public const CHF = 'CHF'; | ||
public const MOP = 'MOP'; | ||
public const MGA = 'MGA'; | ||
public const MWK = 'MWK'; | ||
public const MYR = 'MYR'; | ||
public const MVR = 'MVR'; | ||
public const MRU = 'MRU'; | ||
public const MUR = 'MUR'; | ||
public const XUA = 'XUA'; | ||
public const MXN = 'MXN'; | ||
public const MXV = 'MXV'; | ||
public const MDL = 'MDL'; | ||
public const MNT = 'MNT'; | ||
public const MAD = 'MAD'; | ||
public const MZN = 'MZN'; | ||
public const MMK = 'MMK'; | ||
public const NAD = 'NAD'; | ||
public const NPR = 'NPR'; | ||
public const NIO = 'NIO'; | ||
public const NGN = 'NGN'; | ||
public const OMR = 'OMR'; | ||
public const PKR = 'PKR'; | ||
} |
Oops, something went wrong.