export type DE = "DE";
export type UK = "UK";
export type US = "US";
export type RegionCode =
DE |
UK |
US
;
export class RegionCodes
{
static readonly DE:DE = "DE";
static readonly UK:UK = "UK";
static readonly US:US = "US";
}