Skip to content

Commit

Permalink
adding valid regions
Browse files Browse the repository at this point in the history
  • Loading branch information
DjoykeAbyah committed Dec 17, 2024
1 parent af0f3b7 commit 39dcae5
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions Adyen/Constants/Region.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,29 @@ namespace Adyen.Constants
/// </summary>
public enum Region
{
//Europe
// <summary>
// European Union region
// <summary>
EU = 0,

//Australia
// <summary>
// Australia region
// <summary>
AU = 1,

//US
// <summary>
// United States region
// <summary>
US = 2,

//East Asia
APSE = 3
// <summary>
// Asia-Pacific, South East region
// <summary>
APSE = 3,

// <summary>
// India region
// <summary>
IN = 4
}
}

0 comments on commit 39dcae5

Please sign in to comment.