package io.delphiplatform.api.v3.constant;

import java.util.List;

public abstract class CountryCodeConstant {
    //'local' is a special value that must be resolved into entitie's (e.g. playlist's) own countryCode
    public static final String LOCAL = "local";
    //'global' is a special value that is analog to 'worldwide' but must NOT be used instead of it
    public static final String GLOBAL = "global";

    public static final String WORLDWIDE = "worldwide";
    public static final String WORLDWIDE_NO_ASIAN = "worldwide_no_asian";
    public static final String WW = "ww";
    public static final String US = "us";

    public static final List<String> WORLDWIDE_REGIONS = List.of(CountryCodeConstant.WORLDWIDE,
        CountryCodeConstant.WORLDWIDE_NO_ASIAN);

}
